diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-06-25 17:40:37 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-06-25 17:40:37 +0000 |
commit | 491eab55d8c581b42bcd0625cb137b6a53911259 (patch) | |
tree | c2120a868d7d0ca5cb5f83de352f18f9b3776f47 /contrib/themes/Total_Blue | |
parent | 2398133cc42045805e6045935efeefee18ab1ad8 (diff) | |
download | ampache-491eab55d8c581b42bcd0625cb137b6a53911259.tar.gz ampache-491eab55d8c581b42bcd0625cb137b6a53911259.tar.bz2 ampache-491eab55d8c581b42bcd0625cb137b6a53911259.zip |
updated total blue, sunshine and green-n-black
Diffstat (limited to 'contrib/themes/Total_Blue')
-rw-r--r-- | contrib/themes/Total_Blue/images/ampache.gif | bin | 5192 -> 4848 bytes | |||
-rwxr-xr-x | contrib/themes/Total_Blue/images/background.gif | bin | 0 -> 2278 bytes | |||
-rw-r--r-- | contrib/themes/Total_Blue/templates/style.inc | 83 |
3 files changed, 82 insertions, 1 deletions
diff --git a/contrib/themes/Total_Blue/images/ampache.gif b/contrib/themes/Total_Blue/images/ampache.gif Binary files differindex 96ba8d6e..4e9db802 100644 --- a/contrib/themes/Total_Blue/images/ampache.gif +++ b/contrib/themes/Total_Blue/images/ampache.gif diff --git a/contrib/themes/Total_Blue/images/background.gif b/contrib/themes/Total_Blue/images/background.gif Binary files differnew file mode 100755 index 00000000..d8f219ae --- /dev/null +++ b/contrib/themes/Total_Blue/images/background.gif diff --git a/contrib/themes/Total_Blue/templates/style.inc b/contrib/themes/Total_Blue/templates/style.inc index 8fc1e9e8..4ae46dd0 100644 --- a/contrib/themes/Total_Blue/templates/style.inc +++ b/contrib/themes/Total_Blue/templates/style.inc @@ -30,7 +30,8 @@ <!--
body
{
- background: <?php echo conf('bg_color1'); ?>;
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/background.gif);?>
+
font-family: <?php echo conf('font') ?>;
font-size: <?php echo conf('font_size'); ?>px;
color: <?php echo conf('font_color2'); ?>;
@@ -90,6 +91,10 @@ font-size: <?php echo conf('font_size'); ?>px;
font-weight: bold;
background-color: <?php echo conf('base_color2') ?>;
+ border-style: solid;
+ border-width: 1px;
+ border-color: <?php echo conf('bg_color2'); ?>;
+ margin: 2px 2px 2px 2px;
}
select {
color: <?php echo conf('font_color2'); ?>;
@@ -108,6 +113,82 @@ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-light-bg.gif) <?php echo conf('base_color2')?> repeat-x;
vertical-align: top;
}
+/*************** Main Menu *****************/
+ #mainmenu {
+ float: left;
+ width: 100%;
+ margin: 0;
+ padding: 0;
+ list-style: none;
+ border-top: 1px solid #000;
+ border-bottom: 1px solid #000;
+ border-right: 1px solid #000;
+ border-left: 1px solid #000;
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-light-bg.gif) <?php echo conf('base_color2');?> repeat-x;
+peat-x;
+ }
+ #mainmenu li {
+ float: left;
+ margin: 0;
+ padding: 0 10px 0 10px;
+ border-right: 1px solid #000;
+ display: inline;
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-light-bg.gif) <?php echo conf('base_color2');?> repeat-x;
+peat-x;
+ }
+ #mainmenu li.active {
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-dark-bg.gif) <?php echo conf('base_color2');?> rep
+eat-x;
+ }
+ #mainmenu a {
+ text-decoration: none;
+ }
+ #mainmenu a:hover {
+ color: #000;
+ }
+ #mainmenu a:active {
+ color: #00a;
+ }
+/*************** END Main Menu *************/
+/*************** Admin Menu *************/
+ #adminmenu {
+ float: left;
+ width: 100%;
+ margin: 0;
+ padding: 0;
+ list-style: none;
+ border-bottom: 1px solid #000;
+ border-right: 1px solid #000;
+ border-left: 1px solid #000;
+ border-top: 1px solid #000;
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-light-bg.gif) <?php echo conf('base_color2')?> repeat;
+ }
+ #adminmenu li {
+ float: left;
+ margin: 0;
+ padding: 0 20px 0 20px;
+ border-right: 1px solid #000;
+ display: inline;
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-light-bg.gif) <?php echo conf('base_color2');?> repeat-x;
+ }
+ #adminmenu li.active {
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-dark-bg.gif) <?php echo conf('base_color2');?> repeat-x;
+ }
+ #adminmenu a {
+ text-decoration: none;
+ }
+ #adminmenu a:hover {
+ color: #000;
+ }
+ #adminmenu a:active {
+ color: #000;
+ }
+/*************** END Main Menu *************/
+/*************** Page Header *********************/
+ #pageheader {
+ background: <?php echo conf('bgcolor1');?>;
+ }
+/*************** END Page Header *****************/
.navitem
{
background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-light-bg.gif) <?php echo conf('base_color2')?> repeat-x;
|