-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
78 lines (66 loc) · 1.37 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
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
:root {
--bg-color: #1f1a18;
--primary-color: #dbd4ce;
--secondary-color: #bd3d3d;
--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;
}
.graficos-container {
margin: 5rem;
}
.grafico {
margin-top: 3rem;
}
.graficos-container__texto {
font-size: 1.3rem;
text-align: center;
padding: 2rem;
border: var(--secondary-color) solid 2px;
}
span {
font-weight: bold;
color: var(--secondary-color);
}
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;
}