-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
42 lines (37 loc) · 738 Bytes
/
stylesheet.css
File metadata and controls
42 lines (37 loc) · 738 Bytes
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
/* Resetando margens e padding para evitar espaçamentos indesejados */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Estilizando o corpo da página */
body {
font-family: 'Arial', sans-serif;
background-color: #f4f4f4;
color: #333;
line-height: 1.6;
padding: 20px;
}
/* Estilizando o cabeçalho */
h1 {
color: #2c3e50;
text-align: center;
margin-bottom: 20px;
}
/* Estilizando o parágrafo */
p {
font-size: 1.2rem;
margin-bottom: 20px;
text-align: center;
}
/* Estilizando a lista não ordenada */
ul {
list-style-type: none;
text-align: center;
}
/* Estilizando os itens da lista */
ul li {
font-size: 1.1rem;
color: #2980b9;
margin: 10px 0;
}