add 'Fresh Blue' style from umts-tools.jerryweb.org
authorJeremy Laine <jeremy.laine@m4x.org>
Thu, 20 Jul 2006 23:10:28 +0000 (23:10 +0000)
committerJeremy Laine <jeremy.laine@m4x.org>
Thu, 20 Jul 2006 23:10:28 +0000 (23:10 +0000)
include/diogenes.globals.inc.php.in
styles/fresh_blue.css [new file with mode: 0644]

index 18d074e..0f4ec59 100644 (file)
@@ -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 (file)
index 0000000..709d4bd
--- /dev/null
@@ -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;
+}