-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
112 lines (93 loc) · 1.9 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');
html, body {
margin: 0;
padding: 0;
overflow: hidden;
}
canvas {
display: block;
}
.botao-tela-inicial, .botao-jogar-novamente {
font-family: 'Luckiest Guy', cursive;
padding: 1rem 1.25rem;
font-size: 1.5rem;
letter-spacing: .25rem;
box-shadow: 2px 2px 0px 1px #4a4c69;
text-transform: uppercase;
background-color: #8386b5;
border: none;
border-radius: .75rem;
color: #fff;
}
.botao-tela-inicial:hover, .botao-jogar-novamente:hover {
background-color: #ffc0c1;
box-shadow: 2px 2px 0px 1px #b58a8a;
}
/* CSS personalizado */
.botao-jogar-novamente {
background-color: #ef5350;
box-shadow: 2px 2px 0px 1px #c62828;
}
.botao-jogar-novamente:hover {
background-color: #b71c1c;
box-shadow: 2px 2px 0px 1px #e57373;
}
.container {
font-family: Open-sans, Verdana, Arial;
font-size: 18px;
margin: 0 auto;
height: 730px;
background-image: url('imagens/cenario/floresta-tela-inicial.png');
background-size: cover;
overflow: hidden;
}
.tela {
width: 1980px;
height: 730px;
top: 50%;
display: table-cell;
text-align: center;
vertical-align: middle;
}
.titulo_jogo {
font-family: 'Piedra', Open-sans, Verdana, Arial;
font-size: 100px;
letter-spacing: 5px;
margin-top: 0;
color: #fff;
text-shadow: 2px 2px 1px #E91E63;
margin-bottom: 0;
}
#creditos {
text-decoration: none;
color: #fff;
}
#copyleft {
display:inline-block;
transform: rotate(180deg);
}
.centralizar {
text-align: center;
}
.logo {
width: 200px;
margin-bottom: 20px;
border-radius: 200px;
border: 2px solid #E91E63;
box-shadow: 0px 0px 10px #E91E63;
}
.botao_play {
width: 200px;
height: 200px;
padding: 20px;
border-radius: 100px;
background: #E91E63;
box-shadow: 0px 0px 10px #ff80ab;
font-size: 24px;
text-decoration: none;
color: #fff;
font-weight: bold;
}
.botao_play:hover {
box-shadow: 0px 0px 20px #fff;
}