From c2df69e91b0853e39edd2a6b5a57e807f9647945 Mon Sep 17 00:00:00 2001 From: Jeremy Laine Date: Thu, 20 Jul 2006 23:10:28 +0000 Subject: [PATCH] add 'Fresh Blue' style from umts-tools.jerryweb.org --- include/diogenes.globals.inc.php.in | 1 + styles/fresh_blue.css | 94 +++++++++++++++++++++++++++++++++++++ 2 files changed, 95 insertions(+) create mode 100644 styles/fresh_blue.css diff --git a/include/diogenes.globals.inc.php.in b/include/diogenes.globals.inc.php.in index 18d074e..0f4ec59 100644 --- a/include/diogenes.globals.inc.php.in +++ b/include/diogenes.globals.inc.php.in @@ -120,6 +120,7 @@ class DiogenesGlobals extends DiogenesCoreGlobals { /** Available style sheets */ var $style_sheets = array( 'default_blue' => 'Default Blue', + 'fresh_blue' => 'Fresh Blue', 'funky_doc' => 'Funky Doc', ); diff --git a/styles/fresh_blue.css b/styles/fresh_blue.css new file mode 100644 index 0000000..709d4bd --- /dev/null +++ b/styles/fresh_blue.css @@ -0,0 +1,94 @@ +/* insert your CSS customisations below */ + +#header { + margin: 5px; + padding: 5px; + border: 1px dotted #2050a0; + background-color: #bbddee; + color: black; +} + +#header .logo { + display: none; +} + +#header .titlebar { + margin-left: 50px; + padding: 5px; +} + +#main { + margin-left: 230px; + margin-bottom: 15px; +} + +#sidebar { + margin: 10px; + padding: 5px; + background-color: #f7f7f7; + border: 1px dotted #2050a0; + width: auto; +} + +#footer { + margin: 5px; + padding: 5px; + border: 1px dotted #2050a0; + background-color: #bbddee; +} + +body { + background-color: white; + color: inherit; +} + +a { + color: #0d2c92; +} + +a.phplm { + font-size: 0.9em; +} + +.menu .item a { + background-color: #bbddee; + color: inherit; +} + +.menu .item a.odd { + background-color: #bbddee; + color: inherit; +} + +.menu .item a:hover { + background-color: #3050d0; + color: white; +} + +.menu .item a.top { + background-color: #447788; + color: white; +} + +/* table class 'light' */ +table.light { + border-collapse: collapse; + background-color: #edf8ff; + border: 2px solid #447788; + color: black; +} + +table.light tr.odd { + background-color: #90c0e0; +} + +table.light th { + background-color: #447788; + color: white; +} + +pre { + border: 1px solid #447788; + background-color: #edf8ff; + padding: 10px; +} -- 2.1.4