-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (63 loc) · 1.13 KB
/
style.css
File metadata and controls
72 lines (63 loc) · 1.13 KB
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
/* Reseta estilos */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
/* Corpo da página */
body {
background-color: #f5f5f5;
color: #333;
line-height: 1.6;
}
/* Cabeçalho */
header {
background-color: #2e7d32; /* Verde escuro */
color: white;
text-align: center;
padding: 40px 20px;
}
.subtitulo {
opacity: 0.9;
font-size: 1.2rem;
}
/* Seções */
section {
max-width: 800px;
margin: 30px auto;
background: white;
padding: 25px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
/* Títulos */
h2 {
margin-bottom: 15px;
color: #2e7d32; /* Verde */
}
/* Listas e categorias */
.categoria {
margin-bottom: 20px;
}
.categoria ul {
margin-left: 20px;
}
/* Imagens */
.imagens img {
width: 200px;
height: 120px;
object-fit: cover;
border-radius: 6px;
margin-right: 10px;
margin-top: 10px;
border: 2px solid #2e7d32;
}
/* Rodapé */
footer {
text-align: center;
padding: 20px;
margin-top: 20px;
background-color: #2e7d32; /* Verde */
color: white;
}