Commit e6aebf7687a79097bba6257464885b6f6a4384d7
1 parent
a9a6cb4e
Exists in
master
and in
28 other branches
ActionItem0: adding blocks for green theme
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@353 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
1 changed file
with
76 additions
and
0 deletions
Show diff stats
@@ -0,0 +1,76 @@ | @@ -0,0 +1,76 @@ | ||
1 | +/* Green Theme for Blocks */ | ||
2 | + | ||
3 | +div.block | ||
4 | +{ | ||
5 | + background: #FFFFFF; | ||
6 | + border: 3px solid #060; | ||
7 | + margin-bottom: 10px; | ||
8 | +} | ||
9 | + | ||
10 | +div.block ul | ||
11 | +{ | ||
12 | + margin-left: 15px; | ||
13 | +} | ||
14 | + | ||
15 | +div.block h3 | ||
16 | +{ | ||
17 | + color: #afa; | ||
18 | + background: green; | ||
19 | + font-family: Sans-serif; | ||
20 | + font-size: 13px; | ||
21 | + font-weight: normal; | ||
22 | + border-bottom: 1px solid black; | ||
23 | + height: 27px; | ||
24 | + margin: 0px; | ||
25 | + line-height: 27px; | ||
26 | + padding-left: 10px; | ||
27 | +} | ||
28 | + | ||
29 | +div.block span { | ||
30 | +display: none; | ||
31 | +} | ||
32 | + | ||
33 | +div.block a:hover span { | ||
34 | +display: inline; | ||
35 | +position: absolute; | ||
36 | +color: white; | ||
37 | +background: #009900; | ||
38 | +font-family: Sans-serif; | ||
39 | +font-size: 13px; | ||
40 | +font-weight: normal; | ||
41 | +margin: 10px; | ||
42 | +padding-left: 5px; | ||
43 | +padding-right: 5px; | ||
44 | +} | ||
45 | + | ||
46 | +div.block a { | ||
47 | +display: block; | ||
48 | +width: 10px; | ||
49 | +height: 10px; | ||
50 | +margin-top: 10px; | ||
51 | +margin-right: 5px; | ||
52 | +float: right; | ||
53 | +} | ||
54 | + | ||
55 | +div.block a.button_block_hide { | ||
56 | +border-bottom: 2px solid #dfdfdf; | ||
57 | +} | ||
58 | + | ||
59 | +div.block a:hover.button_block_hide { | ||
60 | +border-bottom: 2px solid #000000; | ||
61 | +} | ||
62 | + | ||
63 | +div.block a.button_block_remove { | ||
64 | +background: #dfdfdf; | ||
65 | +} | ||
66 | + | ||
67 | +div.block a:hover.button_block_remove { | ||
68 | +background: #000000; | ||
69 | +} | ||
70 | + | ||
71 | +div.block_content | ||
72 | +{ | ||
73 | + padding: 5px; | ||
74 | +} | ||
75 | + | ||
76 | + |