Commit bc76fa5500ee8581b9e3769e298c0087b6ebffa7
1 parent
e982adf5
Exists in
master
and in
22 other branches
ActionItem110: Renamed raw, for onecolum
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@705 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
8 changed files
with
134 additions
and
0 deletions
Show diff stats
248 Bytes
225 Bytes
168 Bytes
7.98 KB
4.75 KB
public/designs/templates/ondecolum/stylesheets/style.css
0 → 100644
@@ -0,0 +1,132 @@ | @@ -0,0 +1,132 @@ | ||
1 | +body { | ||
2 | + font-family: Verdana, Sans-Serif; | ||
3 | + font-size: 14px; | ||
4 | +} | ||
5 | + | ||
6 | +#wrap { | ||
7 | +} | ||
8 | + | ||
9 | +#frame { | ||
10 | +background: url("../images/bg_bgheader.png") top left repeat-x; | ||
11 | +} | ||
12 | + | ||
13 | +#header { | ||
14 | +height: 55px; | ||
15 | +} | ||
16 | + | ||
17 | +#boxes { | ||
18 | + position: relative; | ||
19 | + width: auto; | ||
20 | + margin: 20px; | ||
21 | + padding: 10px; | ||
22 | +} | ||
23 | + | ||
24 | +#box_1 { | ||
25 | +} | ||
26 | + | ||
27 | +#spinner { | ||
28 | + z-index: 1000; | ||
29 | + position: absolute; | ||
30 | + left: 50%; | ||
31 | + margin-left: -16px; | ||
32 | + top: 200px; | ||
33 | +} | ||
34 | + | ||
35 | +#footer { | ||
36 | + clear: both; | ||
37 | + text-align: center; | ||
38 | + font-size: smaller; | ||
39 | + color: #333; | ||
40 | + margin: 0px; | ||
41 | + padding: 5px; | ||
42 | + background: #c5d0df url("../images/bg_footer.png") top left repeat-x; | ||
43 | +} | ||
44 | + | ||
45 | + | ||
46 | +/* Edition Mode */ | ||
47 | + | ||
48 | +#design_editor .block_list { | ||
49 | + list-style: none; | ||
50 | + margin: 0px; | ||
51 | + padding: 3px; | ||
52 | +} | ||
53 | + | ||
54 | +#design_editor .box { | ||
55 | + border: 2px solid transparent; | ||
56 | +} | ||
57 | + | ||
58 | +#design_editor .hover { | ||
59 | + border: 2px dotted red; | ||
60 | + background: #ff6; | ||
61 | +} | ||
62 | + | ||
63 | +#design_editor_toolbar { | ||
64 | + padding: 5px; | ||
65 | +} | ||
66 | + | ||
67 | +#design_editor_toolbar h3 { | ||
68 | + font-size: 10px; | ||
69 | + background: #dfdfdf; | ||
70 | + margin: 0px; | ||
71 | + padding: 1px; | ||
72 | + text-align: right; | ||
73 | + color: #545454; | ||
74 | +} | ||
75 | + | ||
76 | +#design_editor_toolbar a { | ||
77 | + font-size: 10px; | ||
78 | + padding: 5px; | ||
79 | + background: #dfdfdf; | ||
80 | + color: black; | ||
81 | +} | ||
82 | + | ||
83 | +.design_editor_box_toolbar { | ||
84 | + text-align: center; | ||
85 | + margin: 5px; | ||
86 | + background: #dfdfdf; | ||
87 | +} | ||
88 | + | ||
89 | +.design_editor_box_toolbar a { | ||
90 | + display: inline; | ||
91 | + width: 30px; | ||
92 | + font-size: 10px; | ||
93 | + padding: 2px; | ||
94 | + background: #dfdfdf; | ||
95 | +} | ||
96 | + | ||
97 | +#design_editor_toolbar a:hover, .design_editor_box_toolbar a:hover { | ||
98 | + background: #545454; | ||
99 | + color: #ffffff; | ||
100 | +} | ||
101 | + | ||
102 | +div#notice { | ||
103 | + z-index: 10000; | ||
104 | + position: absolute; | ||
105 | + top: 100px; | ||
106 | + left: 50%; | ||
107 | + margin-left: -200px; | ||
108 | + width: 400px; | ||
109 | + border: 1px solid black; | ||
110 | + background: #efefef; | ||
111 | + padding: 0.5em; | ||
112 | +} | ||
113 | + | ||
114 | +div#notice .button { | ||
115 | + text-align: center; | ||
116 | + margin-top: 1em; | ||
117 | + margin-bottom: 0.25em; | ||
118 | +} | ||
119 | + | ||
120 | +div#notice .button a { | ||
121 | + border: 1px solid gray; | ||
122 | + background: #ddd; | ||
123 | + color: black; | ||
124 | + padding: 4px; | ||
125 | + padding-left: 28px; | ||
126 | + background-image: url(../../../icons/default/cancel.png); | ||
127 | + background-position: top left; | ||
128 | + background-repeat: no-repeat; | ||
129 | +} | ||
130 | +div#notice .button a:hover { | ||
131 | + background-color: #ffd; | ||
132 | +} |
2.74 KB