-
Notifications
You must be signed in to change notification settings - Fork 0
/
estilo.css
123 lines (100 loc) · 1.41 KB
/
estilo.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
* {
margin: 0;
padding: 0;
}
body {
font-size: 1em;
font-family: "Trebuchet MS", Helvetica, sans-serif;
background: #e6e6e6;
}
/*
**** Layout ****
*/
#area-cabecalho {
background-color: #f7b600;
padding: 15px;
text-align: center;
}
#area-logo, #area-menu {
padding: 10px;
}
#area-principal {
width: 920px;
margin: 0 auto;
padding: 15px;
}
#area-postagens {
width: 660px;
float: left;
}
#area-lateral {
width: 240px;
float: right;
}
.postagem{
padding: 20px;
margin-bottom: 20px;
background: white;
}
.conteudo-lateral {
background: white;
padding: 10px;
margin-bottom: 20px;
}
.postagem-lateral {
font-size: 0.8em;
padding: 5px;
border-bottom: 1px dotted #CCC;
}
#rodape {
clear: both;
text-align: center;
padding: 15px;
background: #CCC;
}
/*
**** Formatação do menu ****
*/
a {
text-decoration: none;
}
a:link, a:visited {
color: #f7b600;
}
a:hover {
text-decoration: underline;
}
#area-cabecalho a:link, #area-cabecalho a:visited {
color: #FFF;
padding: 8px 12px;
}
#area-cabecalho a:hover {
color: #f7b600;
background: #FFF;
text-decoration: none;
}
/*
**** Formatações em geral ****
*/
h1 {
color: #4e4e4e;
font-size: 2.5em;
}
h2 {
color: #f7b600;
}
h3 {
color: #565656;
background: #CCC;
padding: 5px;
}
.branco{
color: white;
}
.data-postagem {
font-size: 0.8em;
border-bottom: 2px solid #CCC;
padding-bottom: 10px;
margin-bottom: 10px;
display: block;
}