diff options
Diffstat (limited to 'subsonic-main/src/main/webapp/style/hd.css')
-rw-r--r-- | subsonic-main/src/main/webapp/style/hd.css | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/subsonic-main/src/main/webapp/style/hd.css b/subsonic-main/src/main/webapp/style/hd.css new file mode 100644 index 00000000..3a5c3f7d --- /dev/null +++ b/subsonic-main/src/main/webapp/style/hd.css @@ -0,0 +1,93 @@ +/* + * CSS styleshet for the "HD-1080" theme. + * + * Author: Sindre Mehus + */ + +@import "midnight.css"; + +/* The primary background color. */ +.bgcolor1 { + background-color: #000843; +} + +/* The secondary background color. */ +.bgcolor2, .ruleTableHeader, .log { + background-color: #00042E +} + +/* Put stuff here if you need to customize the body of the main frame. */ +.mainframe { + background-image:url('../icons/hd/background.png'); + background-repeat:no-repeat; + background-attachment:fixed; + background-color: #00042E +} + +/* Background color for selected header, log etc. */ +.headerSelected { + background-color: #CFD1D6; +} + +/* The primary foreground color. */ +body { + color: #CFD1D6; +} + +/* The secondary foreground color used for h1, details etc. */ +h1, .detail, .albumComment { + color: #CFD1D6; +} + +/* Foreground color used for h2, bold and tr. */ +h2, b, tr { + color: #CFD1D6; +} + +/* Link color */ +a:link, a:active, a:visited, a:link *, a:active *, a:visited * { + color: #97D9FF +} + +/* Link hover color */ +a:hover, a:hover * { + color: orange; +} + +/* Scrollbar colors (supported on IE and Opera) */ +body { + scrollbar-face-color: #00042E; + scrollbar-highlight-color: #000843; + scrollbar-shadow-color: #00042E; + scrollbar-3dlight-color: #00042E; + scrollbar-arrow-color: #000843; + scrollbar-track-color: #000843; + scrollbar-darkshadow-color: #000843; +} + +/* Font 1 */ +body, h2, form, input, select, label, table, a, h1, h1 a, .logo { + font-family: calibri, arial, sans-serif; +} + +body { + margin:1.5em; + font-size: 14pt; +} + +h1, h2, th { + font-weight:normal; +} + +input, select { + font-size: 100%; +} + +.detail { + font-size: 12pt; +} + +.albumComment, .log { + font-size: 12pt; +} + |