-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
68 lines (59 loc) · 1.1 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
/* Reset de estilos */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #F9F6EE;
}
header {
background-image: url('images/header_presentation.png');
color: #F9F6EE;
text-align: center;
padding: 15px 0;
background-size: cover;
}
/* Estilo do conteúdo principal */
main {
padding: 20px;
}
/* Estilo dos títulos */
h1 {
color: #004AAD;
}
h2 {
color: #454545;
}
/* Estilo dos parágrafos */
p {
color: #666;
line-height: 1.6;
}
/* Estilo das listas */
ul {
list-style-type: none;
padding: 0;
color: #454545;
}
li {
margin: 15px 0;
color: #454545;
}
/* Estilo dos links */
a {
color: #6fa4e6; /* Azul pastel */
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Estilo do rodapé */
footer {
background-color: #999; /* Cinza */
color: white;
text-align: center;
padding: 5px 0;
position: relative; /* Alterado para posição relativa */
clear: both; /* Limpa os floats anteriores */
width: 100%;
margin-top: 20px; /* Adiciona margem superior */
}