Commit 79c3cb29d72f19c5d6262399ae6c359f7dc80ec2
1 parent
40638bbf
Exists in
master
and in
22 other branches
ActionItem138: Theme box content
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@1107 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
4 changed files
with
25 additions
and
2 deletions
Show diff stats
545 Bytes
public/designs/templates/default/stylesheets/style.css
1 | 1 | @import url("editor.css"); |
2 | 2 | @import url("contentblocks.css"); |
3 | 3 | @import url("forms.css"); |
4 | +@import url("table.css"); | |
4 | 5 | |
5 | 6 | body { |
6 | 7 | font-family: Verdana, Sans-Serif; |
... | ... | @@ -44,13 +45,15 @@ body { |
44 | 45 | } |
45 | 46 | |
46 | 47 | #design_box_3 { |
47 | - width: 210px; | |
48 | + width: 200px; | |
48 | 49 | float: right; |
50 | + margin-right: 10px; | |
49 | 51 | } |
50 | 52 | |
51 | 53 | #design_box_2 { |
52 | 54 | float: left; |
53 | - width: 280px; | |
55 | + width: 270px; | |
56 | + margin-left: 10px; | |
54 | 57 | } |
55 | 58 | |
56 | 59 | #design_box_1 { | ... | ... |
... | ... | @@ -0,0 +1,19 @@ |
1 | +/* Profile Info */ | |
2 | +table.profile_info { | |
3 | +margin: 5px; | |
4 | +} | |
5 | + | |
6 | +table.profile_info th { | |
7 | +text-align: right; | |
8 | +background-color: #dfdfdf; | |
9 | +} | |
10 | + | |
11 | +table.profile_info td { | |
12 | +text-align: left; | |
13 | +border-bottom: 2px solid #dfdfdf; | |
14 | +padding-left: 3px; | |
15 | +} | |
16 | + | |
17 | +table.profile_info td:hover { | |
18 | +background-color: #dfdfdf; | |
19 | +} | ... | ... |