-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
67 lines (56 loc) · 1.16 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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&display=swap');
:root {
--font-family: 'Montserrat', sans-serif;
--bg-color: #0aa1dd;
--primary-color: #fde8e8;
--bg-color-gameover: #4e0000;
}
body {
background-color: var(--bg-color);
color: var(--primary-color);
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: 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: 20px;
}
.mensagem {
font-size: 1.5em;
margin-top: 40px;
}
.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;
cursor: pointer;
transition: filter .3s;
filter: drop-shadow(0 0 0 transparent);
}
.btn-jogar:hover {
filter: drop-shadow(0px 0px 0.5rem rgb(0, 0, 0));
}
.game-over{
background-color: var(--bg-color-gameover);
}