-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
64 lines (55 loc) · 1.04 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
body {
color: #d7f9ff;
background-color: #0b0d20;
font-family: 'Inter', sans-serif;
display: flex;
align-items: center;
min-height: 100vh;
justify-content: center;
}
h1 {
color: #2bdefd;
}
h1, .caixa-perguntas, .caixa-resultado {
font-family: 'Chakra Petch', sans-serif;
}
.caixa-principal {
background-color: #0b0d20;
width: 90%;
max-width: 600px;
text-align: center;
padding: 50px;
}
.iniciar-btn {
background-color: #212333;
color: #d7f9ff;
border: none;
border-radius: 15px;
padding: 15px;
}
.iniciar-btn:hover {
background-color: #2bdefd;
color: #0b0d20;
}
.alternativa-btn {
background-color: #212333;
color: #d7f9ff;
border: none;
border-radius: 15px;
padding: 15px;
}
.alternativa-btn:hover {
background-color: #2bdefd;
color: #0b0d20;
}
.voltar-btn {
background-color: #212333;
color: #d7f9ff;
border: none;
border-radius: 15px;
padding: 15px;
}
.voltar-btn:hover {
background-color: #2bdefd;
color: #0b0d20;
}