-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestilo.css
114 lines (89 loc) · 1.36 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
/*Limpar formatações padrão*/
* {
margin: 0;
padding: 0;
}
body {
font-size: 16px;
font-family: "Trebuchet MS", Helvetica, sans-serif;
background: #f8f8f8;
}
#navegação {
background-color: #191970;
border-bottom: 1px solid #d8d8d8;
height: 45px;
position: fixed;
width: 100%;
top: 0;
}
#area{
width: 720px;
margin: 0 auto;
}
#area-principal {
width: 720px;
margin: 55px auto 10px auto;
}
#menu {
float: right;
padding: 10px;
}
#logo {
float: left;
}
#postagem {
background: #fff;
padding: 10px;
margin-bottom: 10px;
}
/*Formatação do menu*/
a {
text-decoration: none;
padding: 5px 10px;
}
/*Links nao visitados*/
a:link {
color: #838383;
}
/*links visitados*/
a:visited {
color: #ADD8E6;
}
/*links hover*/
a:hover {
color: #fff;
font-size: 16px;
}
/*links active*/
a:active {
color: #535353;
}
/*Classes*/
.verde {
color: #fff;
text-shadow: 2px 5px black;
}
.data-postagem {
font-size: 14px;
border-bottom: 1px solid #f4f4f4;
display: block;
padding-bottom: 10px;
margin-bottom: 10px;
}
.img-postagem {
float: left;
margin: 0px 10px 5px 0;
}
.postado {
border-left: 5px solid #191970;
padding-left: 5px;
display: block;
margin-top: 10px;
}
img {
width: 170px;
height: 120px;
}
h2 {
color: #000;
}