mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00

For an overvies of the DIV framework and the DIVs in the header and footer please look at http://moodle.org/mod/wiki/view.php?id=2935&userid=0&groupid=0&wikipage=CoursePage The CSS is not yet well structured - it's just working for a starting. For the offical release I'll have to rebuild the CSS to match the final needs. It's lacking an easy CSS for beginners too. Please tell me, if you find some bugs or have some remarks - or if you just like it ;-) Thank you Urs
18 lines
923 B
PHP
18 lines
923 B
PHP
<?PHP // $Id$
|
|
|
|
$THEME->body = "#FFF8EF"; // Main page color
|
|
$THEME->cellheading = "#A7B1B7"; // Standard headings of big tables
|
|
$THEME->cellheading2 = "#849DBC"; // Highlight headings of tables
|
|
$THEME->cellcontent = "#FFFFFF"; // For areas with text
|
|
$THEME->cellcontent2 = "#A7B1B7"; // Alternate colour
|
|
$THEME->borders = "##A7B1B7"; // Table borders
|
|
$THEME->highlight = "#849DBC"; // Highlighted text (eg after a search)
|
|
$THEME->hidden = "#979EA8"; // To color things that are hidden
|
|
$THEME->autolink = "#FFF8EF"; // To color auto-generated links (eg glossary)
|
|
|
|
$THEME->custompix = false; // If true, then this theme must have a "pix"
|
|
// subdirectory that contains copies of all
|
|
// files from the moodle/pix directory
|
|
// See "cordoroyblue" for an up-to-date example.
|
|
|
|
?>
|