diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-24 03:15:05 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-24 03:15:05 +0000 |
commit | ae70bce26c2f39da93c85a082602d58dcf13652e (patch) | |
tree | 0bf530733d44216846ad39f245bc238baf174cee /themes/greyblock/templates/default.css | |
parent | cb12b4a8c948d901f6851a7eae032827b423704d (diff) | |
download | ampache-ae70bce26c2f39da93c85a082602d58dcf13652e.tar.gz ampache-ae70bce26c2f39da93c85a082602d58dcf13652e.tar.bz2 ampache-ae70bce26c2f39da93c85a082602d58dcf13652e.zip |
more updates to the theme stuff
Diffstat (limited to 'themes/greyblock/templates/default.css')
-rw-r--r-- | themes/greyblock/templates/default.css | 242 |
1 files changed, 242 insertions, 0 deletions
diff --git a/themes/greyblock/templates/default.css b/themes/greyblock/templates/default.css new file mode 100644 index 00000000..8535af34 --- /dev/null +++ b/themes/greyblock/templates/default.css @@ -0,0 +1,242 @@ +<?php +/* + + Copyright (c) 2001 - 2005 Ampache.org + All rights reserved. + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version 2 + of the License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +/*! + @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; + font-family: Verdana; + font-size: 12px; + color: #292929; + } + + p + { + color: #292929; + font-family: Verdana; + font-size: 12px; + } + a + { + color: #292929; + font-family: Verdana; + } + a:visited + { + color: #292929; + font-family: Verdana; + } + a:active + { + color: #292929; + font-family: Verdana; + } + .text-box + { + padding-left:5px; + padding-top:5px; + display: table-cell; + margin-bottom:10px; + background-color: #C8C8C8; + border-right:2px solid #000000; + border-bottom:2px solid #000000; + border-left:2px solid #000000; + border-top:2px solid #000000; + } + + .npsong + { + background-color: #FFFF66; + } + table.tabledata + { + } + + td + { + padding: 0px 8px 0px 8px; + color: #292929; + font-family: Verdana; + font-size: 12px; + } + th + { + padding-right: 10px; + } + input + { + color: #292929; + font-family: Verdana; + font-size: 12px; + font-weight: bold; + background-color: #D4D4D4; + margin: 2px 2px 2px 2px; + } + select { + color: #292929; + font-family: Verdana; + font-size: 12px; + background-color: #D4D4D4; + } + textarea + { + background-color: #D4D4D4; + color: #292929; + font-family: Verdana; + font-size: 12px; + } + .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-weight: 900; + } + .header2 + { + color: #292929; + font-family: Verdana; + font-size: <?php echo conf('font_size') + 2; ?>px; + font-weight: 900; + } + .headrow + { + background:#CCCCCC; + font-size: 12px; + } + .odd + { + background:#7A7A7A; + font-size: 12px; + } + .even + { + background:#A2A2A2; + font-size: 12px; + } + .blank + { + background: #fff; + } + .border + { + background:#000000; + } + .header + { + font-size: 12px; + } + .error + { + color: #990033; + } + .fatalerror + { + padding-top: 3px; + padding-bottom: 3px; + color: #990033; + border-right:4px solid #990033; + 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-weight: 900; + text-align: center; + } + .disabled + { + text-decoration: line-through; + } + .alphabet + { + font-size: 12px; + font-weight: normal; + } + .smallbutton + { + border:0px; + padding-left:1px; + padding-right:1px; + font-size: <?php echo conf('font_size') - 1; ?>px; + cursor: pointer; + } + .sidebar + { + margin-left:0px; + margin-top:0px; + margin-right:0px; + 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; } +/** + * Div Definitions + * These define how the page is layed out, be careful with these as changes to them + * can cause drastic layout changes + + #maincontainer + { + margin: 0px; + } + #topbar + { + height: 80px; + padding-top:10px; + padding-left:10px; + background-color: #8B8B8B; + } + #topbarright + { + float: right; + } + #topbarleft + { + float: left; + } +/** + * End Div Definitions + * This is the end of the main structure def's + */ +--> +</style> |