-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
43 lines (37 loc) · 790 Bytes
/
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
:root{
--cor-fundo: #222 ;
--cor-principal: #580d75;
--cor-secundaria: #0e196b;
--cor-destaque: #dca3e4;
--cor-texto: #e0d5e4;
}
body {
background-color: var(--cor-fundo);
color: var(--cor-texto);
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{
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);
}