From a1a18f77a50804e0127dfa4b0f5240c49c541184 Mon Sep 17 00:00:00 2001 From: Scott Jackson Date: Mon, 2 Jul 2012 21:24:02 -0700 Subject: Initial Commit --- subsonic-main/src/main/webapp/style/buuftheme.css | 120 ++++++++++++++++++++++ 1 file changed, 120 insertions(+) create mode 100644 subsonic-main/src/main/webapp/style/buuftheme.css (limited to 'subsonic-main/src/main/webapp/style/buuftheme.css') diff --git a/subsonic-main/src/main/webapp/style/buuftheme.css b/subsonic-main/src/main/webapp/style/buuftheme.css new file mode 100644 index 00000000..5f84f239 --- /dev/null +++ b/subsonic-main/src/main/webapp/style/buuftheme.css @@ -0,0 +1,120 @@ +/* + * CSS styleshet for the "Cool and Clean" theme. + * + * Author: Dan Eriksen (dan.o.eriksen[at]gmail.com) + * + * Icons used are released under Creative Commons. + * Heading icons are part of the Albook icon pack created by Laurent Baumann (http://lbaumann.com/) + * Main theme icon part of itunes icon pack created by Michael Flarup (http://pixelresort.com) + * + * + * Edited for BUUF Theme by Fractal Systems + * BUUF artwork: Based on icons by Paul Davey aka Mattahan. All rights reserved. + */ + +@import "default.css"; + +/* The primary background colour, light gray. Images used to force background on left frame headings and playlist. */ +.bgcolor1 { + background-image:url( "../icons/buuftheme/list_heading.png" ); + background-repeat:repeat; + background-color: #3C2D22; +} + +/* The secondary background colour, light blue, primary theme colour. */ +.bgcolor2, .ruleTableHeader, .log { + background-color: #4C4039; +} + +/* Background for selected headers. */ +.headerSelected { + background-image:url( "../icons/buuftheme/home_hover.png" ); + background-repeat:repeat; + color: #333333; +} + + +/* Foreground colour used for h1, h2, b, tr, details and albumcomments. */ +h1, h2, b, tr, .detail, .albumComment { + color: #ffAE00; +} + +/* Table sizing */ +table { + font-size: 100%; + line-height: 130%; + padding: 0; + border: 0; + margin: 0 0 0 0; +} + +/* Main frame image & colour */ +.mainframe { + background-image:url( "../icons/buuftheme/background_main.png" ); + background-repeat:no-repeat; + background-attachment:fixed; + background-color: #4C4039; + background-position:right; +} + +/* Right frame background. */ +.rightframe { + background-color: #4C4039; + background-image:none; +} + +/* Back image */ +.back { + background-image:url( "../icons/buuftheme/back.png" ); +} + +/* Forward image */ +.forward { + background-image:url( "../icons/buuftheme/forward.png" ); +} + +/* Link colour */ +a:link, a:active, a:visited, a:link *, a:active *, a:visited * { + color: #ffAE00; +} + +/* Link hover colour */ +a:hover, a:hover * { + text-decoration: none; + color: #169F30; +} + +/* Colour for warning messages. */ +.warning { + color: #AA1F15; +} + +/* The primary foreground colour. */ +body { + background-color: #D1D9E1; + scrollbar-arrow-color: #636363; + scrollbar-track-color: #D1D9E1; +} + +/* The album comments. */ +.albumComment { + width: 50em; + font-size: 8pt; + line-height: 1.4em; + padding-top: 0.25em; +} + +/* The log. */ +.log { + font-weight: bold; + white-space: nowrap; + font-size: 8pt; + line-height: 1em; +} + +/* The help, status & web payer settings tables. */ +.ruleTableHeader, .ruleTableCell { + margin: 5px; + padding: 5px; +} + -- cgit v1.2.3