-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestilo.css
More file actions
94 lines (80 loc) · 1.31 KB
/
Copy pathestilo.css
File metadata and controls
94 lines (80 loc) · 1.31 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/* Reset básico */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Corpo */
body {
font-family: Arial, sans-serif;
background-color: #fef6f0;
color: #333;
line-height: 1.6;
}
/* Cabeçalho */
header {
background-color: #ff914d;
color: white;
padding: 20px;
text-align: center;
}
.container-header {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
}
.logo {
width: 60px;
height: 60px;
}
/* Seções */
section {
padding: 40px 20px;
max-width: 800px;
margin: auto;
}
/* Títulos */
h1 {
font-size: 2rem;
}
h2 {
color: #ff6f3c;
margin-bottom: 15px;
}
/* Lista */
ul {
list-style: none;
}
ul li {
background: #ffe0cc;
margin: 10px 0;
padding: 10px;
border-radius: 8px;
}
/* Links */
a {
color: #ff6f3c;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
/* Rodapé */
footer {
background-color: #333;
color: white;
text-align: center;
padding: 15px;
margin-top: 30px;
}
/* Responsividade */
@media (max-width: 600px) {
.container-header {
flex-direction: column;
}
h1 {
font-size: 1.5rem;
}
}