-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles2.css
57 lines (48 loc) · 852 Bytes
/
styles2.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
/* Reset de margens e paddings para garantir uma aparência consistente */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Configurações básicas do corpo */
body {
font-family: Arial, sans-serif;
line-height: 1.6;
padding: 20px;
color: #333;
background-color: #f9f9f9;
}
/* Estiliza o cabeçalho */
header {
background-color: #0044cc;
color: white;
padding: 10px 0;
text-align: center;
}
header h1 {
font-size: 1.5em;
margin-bottom: 10px;
}
/* Estiliza as seções principais */
main {
margin-top: 20px;
}
section {
margin-bottom: 20px;
}
h2 {
color: #0044cc;
font-size: 1.2em;
margin-bottom: 10px;
}
ul {
list-style-type: disc;
padding-left: 20px;
}
a {
color: #0044cc;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}