-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (51 loc) · 1021 Bytes
/
Copy pathstyle.css
File metadata and controls
62 lines (51 loc) · 1021 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
@import url('https://fonts.googleapis.com/css2?family=Chocolate+Classical+Sans&family=Rakkas&display=swap');
/* Variáveis */
:root {
--primary-color: #026773;
--secondary-color: #3CA6A6;
--text-color: #024959;
--background-color: #F2E3D5;
--button-hover: #012E40;
--font-body: "Chocolate Classical Sans", serif;
--font-titulo: "Rakkas", serif;
}
/* Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: var(--font-body);
}
/* Corpo da página */
body {
background-color: var(--background-color);
color: var(--text-color);
line-height: 1.6;
}
h3 {
margin-top: 25px;
}
p {
margin-top: 20px;
}
img {
max-width: 90%;
}
/* código omitido */
/* Responsividade */
@media (max-width: 768px) {
.conteudo {
width: 90%;
}
nav ul {
display: flex;
flex-direction: column;
align-items: center;
}
nav ul li {
margin: 5px 0;
}
.cta-button {
width: 100%;
}
}