diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-28 03:18:50 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-28 03:18:50 +0000 |
commit | 6232e0f8d78c2555e64672341c54916cc0e8b3ed (patch) | |
tree | f387f6de37724bb2ae66e8ff6c6991cd58852982 /themes/greyblock/templates/default.css | |
parent | 601f406d26abfd6fe7256f4e26878cd4e2c9a7e6 (diff) | |
download | ampache-6232e0f8d78c2555e64672341c54916cc0e8b3ed.tar.gz ampache-6232e0f8d78c2555e64672341c54916cc0e8b3ed.tar.bz2 ampache-6232e0f8d78c2555e64672341c54916cc0e8b3ed.zip |
flatened out greyblock theme per a request
Diffstat (limited to 'themes/greyblock/templates/default.css')
-rw-r--r-- | themes/greyblock/templates/default.css | 92 |
1 files changed, 66 insertions, 26 deletions
diff --git a/themes/greyblock/templates/default.css b/themes/greyblock/templates/default.css index 8535af34..1c12a00f 100644 --- a/themes/greyblock/templates/default.css +++ b/themes/greyblock/templates/default.css @@ -1,4 +1,3 @@ -<?php /* Copyright (c) 2001 - 2005 Ampache.org @@ -20,22 +19,13 @@ */ -/*! - @header Style File - @discussion this is the css that is included on every page of - ampache, mod this to change the look and feel of the site -*/ -?> - -<style type="text/css"> -<!-- body { padding-top: 0px; margin-top: 0px; margin-left: 0px; margin-right: 0px; - background: #8B8B8B; + background-color: #8B8B8B; font-family: Verdana; font-size: 12px; color: #292929; @@ -118,21 +108,20 @@ } .table-header { - background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-light-bg.gif) #D4D4D4 repeat-x; vertical-align: top; } .header1 { color: #292929; font-family: Verdana; - font-size: <?php echo conf('font_size') + 6; ?>px; + font-size: 16px; font-weight: 900; } .header2 { color: #292929; font-family: Verdana; - font-size: <?php echo conf('font_size') + 2; ?>px; + font-size: 14px; font-weight: 900; } .headrow @@ -175,7 +164,7 @@ border-bottom:4px solid #990033; border-left:4px solid #990033; border-top:4px solid #990033; - font-size: <?php echo conf('font_size')+2; ?>px; + font-size: 14px; font-weight: 900; text-align: center; } @@ -193,7 +182,7 @@ border:0px; padding-left:1px; padding-right:1px; - font-size: <?php echo conf('font_size') - 1; ?>px; + font-size: 11px; cursor: pointer; } .sidebar @@ -204,20 +193,77 @@ padding-right:0px; padding-top: 0px; padding-left: 0px; - background: #D4D4D4; } /* These three lines make a menu vertical */ - #content { float: none; } - #sidebar li { float: none; } - #sidebar li ul { margin: -1.5em 0 0 9em; } +#content { + float: none; + background-color: #8B8B8B; +} /** * Div Definitions * These define how the page is layed out, be careful with these as changes to them * can cause drastic layout changes + */ +.text-action a,.text-action li { background: #D4D4D4; } + +#sidebar h3 { display: none; } + +#sidebar li:hover { + background-color: #7f7f7f; +} + +.box-left-top { display: none; } +.box-left-bottom { display: none; } +.box-left { display: none; } +.box-right-top { display: none; } +.box-right-bottom { display: none; } +.box-right { display: none; } +.box-bottom { display: none; } +.box-top { display: none; } +.box { background: #D4D4D4; margin: 10px; } + +#sidebar li { + /* float: left; Uncomment for horizontal */ + margin: 0; + border-right: 1px solid #607080; + border-bottom: 1px solid #607080; + display: block; + background: #D4D4D4; + padding: 5px 0px 5px 10px; + width: 10.5em; +} +#sidebar li ul { + left: auto; + margin: 0; + display: block; + float: left; + width: 10em; + position: absolute; +} + +#sidebar li:active { + z-index:0; +} + +#sidebar li:hover ul, #sidebar li.sfhover ul { + left: auto; +} + +#navlist ul li { + background-color: #d6d6d6; + margin-left:.5em; + width: 10em; + display: block; + +} + +#sidebar li:active { background-color: #FFFFFF; } + #sidebar { background-color: #8b8b8b; } #maincontainer { margin: 0px; + background-color: #8B8B8B; } #topbar { @@ -234,9 +280,3 @@ { float: left; } -/** - * End Div Definitions - * This is the end of the main structure def's - */ ---> -</style> |