diff options
author | Scott Jackson <daneren2005@gmail.com> | 2012-07-02 21:24:02 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2012-07-02 21:24:02 -0700 |
commit | a1a18f77a50804e0127dfa4b0f5240c49c541184 (patch) | |
tree | 19a38880afe505beddb5590379a8134d7730a277 /subsonic-main/src/main/webapp/style/denim.css | |
parent | b61d787706979e7e20f4c3c4f93c1f129d92273f (diff) | |
download | dsub-a1a18f77a50804e0127dfa4b0f5240c49c541184.tar.gz dsub-a1a18f77a50804e0127dfa4b0f5240c49c541184.tar.bz2 dsub-a1a18f77a50804e0127dfa4b0f5240c49c541184.zip |
Initial Commit
Diffstat (limited to 'subsonic-main/src/main/webapp/style/denim.css')
-rw-r--r-- | subsonic-main/src/main/webapp/style/denim.css | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/subsonic-main/src/main/webapp/style/denim.css b/subsonic-main/src/main/webapp/style/denim.css new file mode 100644 index 00000000..b273a559 --- /dev/null +++ b/subsonic-main/src/main/webapp/style/denim.css @@ -0,0 +1,90 @@ +/* + * CSS styleshet for the "Denim" theme. + * + * Author: Thomas Bruce Dyrud (thomasbrucedyrud[at]gmail.com) + * + */ + +@import "default.css"; + +/* The primary background colour. */ +.bgcolor1 { + background-color: #456993; +} + +/* The secondary background colour, light blue, primary theme colour. */ +.bgcolor2, .ruleTableHeader, .log { + background-color: #456993; + color: #EFE9D9; +} + +/* Background colour for selected header, log etc. */ +.headerSelected { + color: #EFE9D9; + background-color: #456993; + border: 1px solid #EFE9D9; +} + + +/* The secondary foreground colour used for h1, details etc. */ +h1, .detail, .albumComment { + color: #EFE9D9; +} + +/* Foreground colour used for h2, bold and tr. */ +h2, b, tr { + color: #EFE9D9; +} + +/* Table sizing */ +table { + margin: 0 0 0 0; +} + +/* Main frame image & colour */ +.mainframe { + background-color: #456993; + background-position:right; +} + + +/* Back image */ +.back { + background-image:url( "../icons/denim/back.png" ); +} + +/* Forward image */ +.forward { + background-image:url( "../icons/denim/forward.png" ); +} + + +/* Link colour */ +a:link, a:active, a:visited, a:link *, a:active *, a:visited * { + color: #B6BEC2; +} + +/* Link hover colour */ +a:hover, a:hover * { + text-decoration: underline; + color: #B6BEC2; +} + +/* Colour for warning messages. */ +.warning { + color: #990099; +} + +/* The primary foreground colour. */ +body { + color: #EFE9D9; + background-color: #DDDDDD; +} + +html { + background-color: transparent; +} + +label, p { + color: #CCC; +}
\ No newline at end of file |