-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
45 lines (40 loc) · 815 Bytes
/
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
/* Reset básico para remover margens e preenchimento padrão */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Estilo geral do corpo */
body {
font-family: Arial, sans-serif;
line-height: 1.6;
background-color: #f4f4f4;
color: #333;
padding: 20px;
}
/* Estilo do contêiner principal */
div {
max-width: 800px;
margin: 0 auto;
background: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* Estilo do título principal */
h1 {
font-size: 2.5em;
color: #333;
margin-bottom: 20px;
text-align: center;
}
/* Estilo dos subtítulos */
h2 {
font-size: 1.8em;
color: #555;
margin-top: 20px;
margin-bottom: 10px;
border-bottom: 2px solid #ddd;
padding-bottom: 5px;
}
/* Estilo