Commit 2be7c43027654f9b3914e2a2d3ab742818c286a8
1 parent
0f7b9031
Exists in
master
and in
12 other branches
Custom CSS Ajuda page
Showing
2 changed files
with
34 additions
and
0 deletions
Show diff stats
... | ... | @@ -0,0 +1,30 @@ |
1 | +#article-hits { | |
2 | + display:none !important; | |
3 | + | |
4 | +} | |
5 | + | |
6 | +.main-block #article-header H1.title{ | |
7 | + font-size: 26px !important; | |
8 | + margin-bottom: 10px !important; | |
9 | +} | |
10 | + | |
11 | +.article-body { | |
12 | + font-family: arial; | |
13 | +} | |
14 | + | |
15 | +.article-body P { | |
16 | + margin-bottom: 15px; | |
17 | +} | |
18 | + | |
19 | +ul.lista-ajuda { | |
20 | + padding-top: 20px; | |
21 | + margin-top: 20px; | |
22 | + border-top: 1px solid #ddd; | |
23 | + font-size: 15px; | |
24 | +} | |
25 | + | |
26 | +ul.lista-ajuda li { | |
27 | + list-style: square; | |
28 | + list-style-position: inside; | |
29 | + margin-bottom: 2px; | |
30 | +} | ... | ... |
style.css
... | ... | @@ -28,6 +28,10 @@ |
28 | 28 | @import url(page-inicial.css); |
29 | 29 | @import url(page-catalog-software.css); |
30 | 30 | |
31 | +/****************** pagina de artigos ********************/ | |
32 | +@import url(pagina-artigos.css); | |
33 | + | |
34 | + | |
31 | 35 | /****************** Block Redes Sociais ********************/ |
32 | 36 | @import url(redes_sociais.css); |
33 | 37 | ... | ... |