diff options
author | Thomas Willingham <founder@kakste.com> | 2013-10-01 23:04:14 +0100 |
---|---|---|
committer | Thomas Willingham <founder@kakste.com> | 2013-10-01 23:04:14 +0100 |
commit | 3f850d346249e66e39f1e6646bfeb5e5f26b7150 (patch) | |
tree | 9dd213f653e2808b9c27789065f05813c57e68c3 /view/theme/redbasic/css | |
parent | 5d3dbfae4c544a2f46ca9463461d537aa8940c73 (diff) | |
download | volse-hubzilla-3f850d346249e66e39f1e6646bfeb5e5f26b7150.tar.gz volse-hubzilla-3f850d346249e66e39f1e6646bfeb5e5f26b7150.tar.bz2 volse-hubzilla-3f850d346249e66e39f1e6646bfeb5e5f26b7150.zip |
Do PCSS properly
Diffstat (limited to 'view/theme/redbasic/css')
-rw-r--r-- | view/theme/redbasic/css/style.css | 26 |
1 files changed, 23 insertions, 3 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index e973b9c7c..bc8014978 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -10,8 +10,11 @@ body { font-family: arial,freesans,clean,sans-serif; font-size: 12px; - background-color: #FFFFFF; - color: #000000; + background-color: #$background_colour; + background-image: url('$background_image'); + background-attachment: fixed; + background-size: cover; + color: #$font_colour; margin: 0px; } .jslider { @@ -114,6 +117,21 @@ blockquote { filter:alpha(opacity=100); } +nav {background-image: linear-gradient(bottom, #$nav_bg_1 26%, #$nav_bg_2 82%) !important; + background-image: -o-linear-gradient(bottom, $nav_bg_1 26%, $nav_bg_2 82%) !important; + background-image: -moz-linear-gradient(bottom,$nav_bg_1 26%, $nav_bg_2 82%) !important; + background-image: -webkit-linear-gradient(bottom, $nav_bg_1 26%, $nav_bg_2 82%) !important; + background-image: -ms-linear-gradient(bottom, $nav_bg_1 26%, $nav_bg_2 82%) !important; +} + + +nav:hover {background-image: linear-gradient(bottom, $nav_bg_3 26%, $nav_bg_4 82%); + background-image: -o-linear-gradient(bottom, $nav_bg_3 26%, $nav_bg_4 82%); + background-image: -moz-linear-gradient(bottom, $nav_bg_3 26%, $nav_bg_4 82%) !important; + background-image: -webkit-linear-gradient(bottom, $nav_bg_3 26%, $nav_bg_4 82%); + background-image: -ms-linear-gradient(bottom, $nav_bg_3 26%, $nav_bg_4 82%); +} + nav #site-location { color: #888a85; @@ -805,7 +823,8 @@ footer { margin-top: 10px; position: relative; border-radius: $radiuspx; - border: 1px solid #eec; + background-color: #$item_colour; + opacity: $item_opacity; } .thread-end-wrapper { @@ -953,6 +972,7 @@ footer { .wall-item-content { margin-left: 10px; overflow: auto; + font-size: $font_sizepx; } .wall-item-content img { |