-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
112 lines (92 loc) · 1.54 KB
/
style.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
* {
margin: 0;
padding: 0;
}
body{
font-size: 1em;
font-family: "Trebuchet MS", Helvetica, sans-serif;
background: #e6e6e6 ;
}
#area-cabecalho {
background-color: #f7b600;
padding: 15px;
text-align: center;
}
#arela-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;
}
#rodape{
clear: both;
text-align: center;
padding: 15px;
background: #ccc;
}
.postagem {
padding: 20px;
margin-bottom: 20px;
background: white;
}
.conteudo-lateral {
background: white;
padding: 10px;
margin-bottom: 10px;
}
/*geral*/
h1{
color: #4e4e4e;
font-size: 2.5em;
}
.branco {
color: white;
}
h2 {
color: #f7b600;
}
h3 {
color: #565656;
background: #ccc;
padding: 5px;
}
.data-postagem{
font-size: 0.8em;
border-bottom: 1px solid #f4f4f4 ;
padding-bottom: 10px;
margin-bottom: 10px;
display: block;
}
.texto-lateral{
font-size: 0.8em;
padding: 5px;
}
/*links*/
a{
text-decoration: none;
}
a:link, a:visited {
color:#f7b600 ;
}
a:hover {
text-decoration: underline;
}
#area-cabecalho a:link, #area-cabecalho a:visited {
color: white;
padding:8px 12px;
}
#area-cabecalho a:hover {
color: #f7b600;
background: white;
text-decoration: none;
}