diff options
author | Thomas Willingham <founder@kakste.com> | 2013-01-12 14:13:45 +0000 |
---|---|---|
committer | Thomas Willingham <founder@kakste.com> | 2013-01-12 14:13:45 +0000 |
commit | 73191ad0f31c92d258cc40819f2ebc4be849540b (patch) | |
tree | a044101c21f8742f5a968dd5f11c292b148a7a74 /view/theme/fancyred/css | |
parent | 82e0c04d92deab0dfc9e26841ef6a0abbf387952 (diff) | |
download | volse-hubzilla-73191ad0f31c92d258cc40819f2ebc4be849540b.tar.gz volse-hubzilla-73191ad0f31c92d258cc40819f2ebc4be849540b.tar.bz2 volse-hubzilla-73191ad0f31c92d258cc40819f2ebc4be849540b.zip |
Fancyred - get likes/dislikes almost, but not quite, right.
Diffstat (limited to 'view/theme/fancyred/css')
-rw-r--r-- | view/theme/fancyred/css/style.css | 42 |
1 files changed, 33 insertions, 9 deletions
diff --git a/view/theme/fancyred/css/style.css b/view/theme/fancyred/css/style.css index c9da4b730..dbf028dda 100644 --- a/view/theme/fancyred/css/style.css +++ b/view/theme/fancyred/css/style.css @@ -315,6 +315,7 @@ nav #nav-link-wrapper .nav-link { box-shadow: 5px 5px 5px #444; margin-left: 8px; padding: 4px; + text-align: center; } .tab:hover, .tab.active:hover { background: #d00; @@ -1301,8 +1302,7 @@ width: 90%; .wall-item-body { /* float: left; */ /*width: 450px;*/ - margin-top: 10px; - margin-right: 10px; + margin: 10px 10px 30px; } .wall-item-tools { @@ -1311,18 +1311,32 @@ width: 90%; background-position: 0 -20px; background-repeat: repeat-x; background: #eee; - padding: 5px 10px; + padding: 2px; border-radius: 0px 0px 10px 10px; border: 1px #eec solid; } -.wall-item-like { -margin: 15px; -opacity: 0.6; +.wall-item-like, .wall-item-dislike { + font-size: 0.8em; + color: #878883; + position: relative; + bottom: 50px; + margin-left: 120px; + float:left; + opacity: 0.6; } -.wall-item-like:hover { -margin: 15px; +/* +.wall-item-dislike { + font-size: 0.8em; + color: #878883; + position: relative; + bottom: 50px; + margin-left: 120px; +} + +*/ +.wall-item-like:hover, .wall-item-dislike:hover{ opacity: 1; } @@ -2834,10 +2848,20 @@ aside input[type='text'] { #event-summary { width: 400px; + font-weight: bold; + font-size:2em; } .vevent { - border: 1px solid #CCCCCC; + background: -moz-radial-gradient(#2e2f2e, #000); +background: -ms-radial-gradient(#2e2f2e, #000); +background: -webkit-radial-gradient(#2e2f2e, #000); +border-radius: 100px; +padding: 80px; +font-weight: bold; +text-align: center; +color: #fff; + } .vevent .event-summary { |