Commit 4f1ac9443a1580c664ad06ae2156af7e343d6fae
1 parent
fb7e72a3
Exists in
master
and in
2 other branches
Styling blocks on profile
Showing
1 changed file
with
58 additions
and
1 deletions
Show diff stats
style.css
... | ... | @@ -5,6 +5,10 @@ body { |
5 | 5 | color: #6F6F6F; |
6 | 6 | } |
7 | 7 | |
8 | +p { | |
9 | + line-height: 18px; | |
10 | +} | |
11 | + | |
8 | 12 | #wrap-1 { |
9 | 13 | width: 100%; |
10 | 14 | } |
... | ... | @@ -211,10 +215,54 @@ body { |
211 | 215 | } |
212 | 216 | |
213 | 217 | .action-home-index #content .article-block p { |
214 | - line-height: 18px; | |
215 | 218 | color: #777; |
216 | 219 | } |
217 | 220 | |
221 | +/* * * * * Profile blocks * * * * */ | |
222 | + | |
223 | +.article-block .alerta-prazo { | |
224 | + background-color: #ece2c0; | |
225 | + padding: 10px; | |
226 | +} | |
227 | + | |
228 | +.template-nosidebars #content .block-title { | |
229 | + color: #444; | |
230 | + border-bottom: 2px solid #f88021; | |
231 | + font-weight: normal; | |
232 | + font-size: 18px; | |
233 | + padding-bottom: 5px; | |
234 | +} | |
235 | + | |
236 | +.template-nosidebars #content .article-block { | |
237 | + display: inline-block; | |
238 | +} | |
239 | + | |
240 | +.template-nosidebars #content .article-block { | |
241 | + width: 70%; | |
242 | +} | |
243 | + | |
244 | +.template-nosidebars #content .article-block + .article-block { | |
245 | + width: 28%; | |
246 | + vertical-align: top; | |
247 | +} | |
248 | + | |
249 | +.template-nosidebars #content .article-block h2 { | |
250 | + font-weight: normal; | |
251 | + font-size: 33px; | |
252 | + color: #1879BE; | |
253 | +} | |
254 | + | |
255 | +.template-nosidebars #content .article-block a, | |
256 | +.template-nosidebars #content .article-block a:visited { | |
257 | + color: #f88021; | |
258 | + font-weight: bold; | |
259 | +} | |
260 | + | |
261 | +.template-nosidebars #content .article-block a:hover { | |
262 | + color: #f85b21; | |
263 | +} | |
264 | + | |
265 | + | |
218 | 266 | /* * * * * Content * * * * */ |
219 | 267 | |
220 | 268 | #content { |
... | ... | @@ -222,6 +270,15 @@ body { |
222 | 270 | padding-top: 20px; |
223 | 271 | } |
224 | 272 | |
273 | +#content .main-block h1, #not-found h1, #access-denied h1, | |
274 | +#content .block-title { | |
275 | + font-variant: normal; | |
276 | +} | |
277 | + | |
278 | +#content .block-title { | |
279 | + text-transform: uppercase; | |
280 | +} | |
281 | + | |
225 | 282 | /* * * * * Footer * * * * */ |
226 | 283 | |
227 | 284 | #theme-footer { | ... | ... |