Commit 5039d33b2889a78430265d1cfcdced61a4628fd4
1 parent
c00cc4c9
Exists in
master
and in
5 other branches
Add style Bar Psocial
Showing
4 changed files
with
33 additions
and
7 deletions
Show diff stats
header.rhtml
5.17 KB
site_title.rhtml
1 | -<% if File.exists?(File.join(Rails.root, 'public', "/designs/themes/#{environment.theme}/images/thin-logo.png")) %> | |
2 | - <%= link_to(image_tag("/designs/themes/#{environment.theme}/images/thin-logo.png"), environment.top_url) %> | |
3 | -<% else %> | |
4 | - <%= link_to(image_tag("/designs/themes/noosfero/images/thin-logo.png"), environment.top_url) %> | |
5 | -<% end %> | |
1 | +<%= link_to(image_tag("/designs/themes/comigrar/images/thin-logo.png"), environment.top_url) %> | ... | ... |
style.css
... | ... | @@ -5,7 +5,14 @@ body { |
5 | 5 | background: #FFF; |
6 | 6 | } |
7 | 7 | |
8 | +#wrap-1 { | |
9 | + width: auto; | |
10 | + margin: 0px; | |
11 | +} | |
12 | + | |
8 | 13 | #wrap-2 { |
14 | + width: 960px; | |
15 | + margin: auto; | |
9 | 16 | border: 0px; |
10 | 17 | } |
11 | 18 | |
... | ... | @@ -21,9 +28,30 @@ body { |
21 | 28 | background: none; |
22 | 29 | } |
23 | 30 | |
24 | -/* Title Style */ | |
31 | +/* Bar Psocial Style */ | |
32 | + | |
33 | +#theme-header { | |
34 | + height: 40px; | |
35 | + background-image: linear-gradient(bottom, #E8E8E8 20%, #FEFEFE 80%); | |
36 | + background-image: -o-linear-gradient(bottom, #E8E8E8 20%, #FEFEFE 80%); | |
37 | + background-image: -moz-linear-gradient(bottom, #E8E8E8 20%, #FEFEFE 80%); | |
38 | + background-image: -webkit-linear-gradient(bottom, #E8E8E8 20%, #FEFEFE 80%); | |
39 | + background-image: -ms-linear-gradient(bottom, #E8E8E8 20%, #FEFEFE 80%); | |
40 | + background-image: -webkit-gradient( | |
41 | + linear, | |
42 | + left bottom, | |
43 | + left top, | |
44 | + color-stop(0.2, #E8E8E8), | |
45 | + color-stop(0.8, #FEFEFE) | |
46 | + ); | |
47 | +} | |
48 | + | |
49 | +#site-title { top: -40px; } | |
50 | + | |
51 | +#user { top: -30px; } | |
52 | + | |
25 | 53 | |
26 | -/*Tile Header*/ | |
54 | +/* Title Header */ | |
27 | 55 | |
28 | 56 | #content .main-block h1, |
29 | 57 | #content .main-block h2, | ... | ... |