-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (53 loc) · 1.04 KB
/
style.css
File metadata and controls
63 lines (53 loc) · 1.04 KB
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=Quantico:ital,wght@0,400;0,700;1,400;1,700&display=swap');
:root {
--font-family: 'Quantico', sans-serif;
--bg-color: #124076;
--primary-color: #F7EEDD;
--error-color: #D37676;
}
body{
background-color: var(--bg-color);
color: var(--primary-color);
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
margin: 0;
font-family: var(--font-family);
}
h1{
font-size: 5em;
}
h2{
font-size: 4em;
}
h3{
font-size: 2em;
margin-top: 25px;
}
.mensagem{
font-size: 1.3em;
margin-top: 30px;
}
.invalido{
color: var(--error-color);
}
.box{
border: 2px solid var(--primary-color);
display: inline-block;
font-size: 4em;
padding: 10px;
margin: 20px;
}
.btn-jogar{
padding: 8px 15px;
border: 0;
background: var(--primary-color);
border-radius: 5px;
margin-top: 20px;
}
.btn-jogar:hover{
background: #FFC374;
}