aboutsummaryrefslogtreecommitdiff
path: root/subsonic-main/src/main/webapp/style/monochrome.css
diff options
context:
space:
mode:
Diffstat (limited to 'subsonic-main/src/main/webapp/style/monochrome.css')
-rw-r--r--subsonic-main/src/main/webapp/style/monochrome.css111
1 files changed, 111 insertions, 0 deletions
diff --git a/subsonic-main/src/main/webapp/style/monochrome.css b/subsonic-main/src/main/webapp/style/monochrome.css
new file mode 100644
index 00000000..ce1bf47d
--- /dev/null
+++ b/subsonic-main/src/main/webapp/style/monochrome.css
@@ -0,0 +1,111 @@
+/*
+ * CSS styleshet for monochrome style
+ *
+ * Author: David D ddavis1@gmail.com
+ */
+
+@import "default.css";
+
+/* highlights to contrast with bgcolor2. */
+.bgcolor1 {
+ background-color: #EEE;
+}
+
+/* The primary background colour, light blue, primary theme colour. */
+.bgcolor2, .ruleTableHeader, .log {
+ background-color: #CCC;
+}
+
+/* Background colour for selected header, log etc. */
+.headerSelected {
+ color: #000000;
+ background-color: #AAAAAA;
+}
+
+
+/* The secondary foreground colour used for h1, details etc. */
+h1, .detail, .albumComment {
+ color: #000000;
+}
+
+/* Foreground colour used for h2, bold and tr. */
+h2, b, tr {
+ color: #000000;
+}
+
+/* Table sizing */
+table {
+ margin: 0 0 0 0;
+}
+
+/* Main frame image & colour */
+.mainframe, .rightframe {
+ background-color: #EEE;
+}
+
+/* Link colour */
+a:link, a:active, a:visited, a:link *, a:active *, a:visited * {
+ color: #000000;
+}
+
+/* Link hover colour */
+a:hover, a:hover * {
+ text-decoration: underline;
+ color: #FFFFFF;
+}
+
+/* Colour for warning messages. */
+.warning {
+ color: #990099;
+}
+
+/* Background colour for form controls. */
+input, select {
+ color: #333;
+ background-color: #EEE;
+}
+
+/* Hover colour for form controls. */
+input:hover, select:hover {
+ color: #000000;
+ background-color: #FFF;
+}
+
+/* Background colour for option controls. */
+option {
+ font-weight: bold;
+ background-color: #666666;
+ color: #FFFFFF;
+}
+
+/* The primary foreground colour. */
+body {
+ background-color: #EEEEEE;
+}
+
+/* The album comments. */
+.albumComment {
+ width: 50em;
+ font-size: 8pt;
+ line-height: 1.4em;
+ padding-top: 0.25em;
+ color: #000000;
+}
+
+/* The log. */
+.log {
+ font-weight: bold;
+ white-space: nowrap;
+ font-size: 8pt;
+ line-height: 1em;
+ color: #000000;
+ background-color: #C0C0C0;
+}
+
+/* The help, status & web payer settings tables. */
+.ruleTableHeader, .ruleTableCell {
+ margin: 5px;
+ padding: 5px;
+ color: #FFFFFF;
+ background-color: #C0C0C0;
+} \ No newline at end of file