-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
63 lines (53 loc) · 1.27 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
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
:root {
--cor-fundo: #01080E;
--cor-principal: #0B0D20 ;
--cor-secundaria: #212333;
--cor-destaque: #2BDEFD;
--cor-texto: #D7F9FF;
}
body {
background-color: var(--cor-fundo);
color: var(--cor-texto);
font-family: 'Inter', sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.caixa-principal{
background-color: var(--cor-principal);
width: 90%;
max-width: 600px;
text-align: center;
padding: 20px;
}
h1, .caixa-perguntas, .caixa-resultado{
font-family: 'Chakra Petch', sans-serif;
}
h1 {
color: var(--cor-destaque);
}
button {
background-color: var(--cor-secundaria);
color: var(--cor-texto);
border: none;
border-radius: 15px;
padding: 15px;
transition: background-color 0.3s;
}
button:hover {
background-color: var(--cor-destaque);
color: var(--cor-principal);
}
.caixa-resultado{
display: none;
}
.caixa-resultado.mostrar{
display: block;
}
.caixa-alternativas{
display: flex;
flex-direction: column;
gap: 10px;
}