-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
83 lines (70 loc) · 1.55 KB
/
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
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
@import url('https://fonts.googleapis.com/css2?family=Boogaloo&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
:root{ /*define o escopo global da variável, tornando-a acessível em todo o documento HTML*/
--bg-color: #91e2f0;
--primary-color:#de96ff;
--secundary-color: rgb(194, 155, 245);
--font: "Nunito Sans", sans-serif;
}
body{
background-color: var(--bg-color);
color: var(--primary-color);
font-family: var(--font);
height: 100vh;
margin: 0;
}
header{
background-color: var(--primary-color);
text-align: center;
padding: 1px;
}
h1{
font-size: 2rem;
color: var(--bg-color);
font-weight: 700;
}
nav{
display: flex;
justify-content: center;
font-weight: 400;
}
nav a{
text-decoration: none;
color: var(--bg-color);
margin: 0 2rem 1rem 0rem;
font-size: 1.2rem;
}
nav a:hover{
text-decoration: underline;
transform: scale(0.90);
transition: transform 0.1s;
color: var(--bg-color);
}
.grafico{
margin-top: 3rem;
}
#graficos-container{
margin: 5rem;
}
.graficos-container__texto{
font-size: 1.3rem;
text-align: center;
padding: 2rem;
border: var(--secundary-color) solid 2px;
}
span{
font-weight: bold;
color: var(--secundary-color);
}
p {
border: var(--secundary-color) solid 2px;
}
footer{
display: flex;
align-items: center;
justify-content: center;
background-color: var(--primary-color);
color: var(--bg-color);
width: 100%;
height: 3rem;
margin-top: 2rem;
}