initial commit

This commit is contained in:
2017-10-10 14:30:28 +01:00
commit e1f112083d
49 changed files with 2710 additions and 0 deletions

17
style.php Normal file
View File

@@ -0,0 +1,17 @@
<?php
header('Content-Type: text/css');
require_once 'css/default.css';
require_once 'config.php';
echo "\n";
foreach ($aConfig['colors'] as $sType => $aColor) {
printf(<<<CSS
tbody td.type-%s {
background: %s;
}
CSS
, $sType, $aColor[1]);
}
exit;