-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.scss
177 lines (145 loc) · 5.56 KB
/
style.scss
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
// VARIÁVEIS DO PROJETO
$bt-vm: #f91e08;
$bt-vd: #03d534;
$bt-az: #04c7e7;
$bt-am: #e2e60d;
$fonte:"Nunito", sans-serif;
body {
margin: 0;
background-color: #cfe0e8;
.background {
height: 100vh;
width: 100vw;
display: flex; // Aplica a organização dos elementos em bloco, ocupando o espaço máximo dentro da div.
justify-content: center; // Centraliza o bloco visual dos botões na horizontal.
align-items: center; // Centraliza o bloco visual dos botões na vertical.
column-gap: 50px; // Espaçamento entre o Placa e os Botões do jogo.
.scoreboard {
font-family: $fonte;
font-size: 25px;
color: rgb(10, 10, 95);
margin-left: -375px;
padding: 20px 20px 20px;
border-radius: 5px;
background: linear-gradient(145deg, #21f0ca, #53a1c5);
box-shadow: 5px 5px 10px #e9e9e9, -5px -5px 10px #fdfdfd;
.player {
text-align: center;
margin-bottom: 25px;
.player-text {
.player-name {
}
}
}
.score {
text-align: center;
.score-text {
}
.score-count {
}
}
.level {
text-align: center;
.level-text {
}
.level-count {
}
}
}
.main-screen {
margin-left: 0px;
border: 0px solid white;
background-color:black;
box-shadow: 5px 5px 10px #e9e9e9,
-5px -5px 10px #fdfdfd;
border-radius: 100%; // Raio da borda, criando formato circular. (Semelhante ao formato do jogo Genius)
height: 635px;
width: 635px;
display: flex;
align-items: center;
justify-content: center;
.core-screen {
display: grid; // Organiza em grade os 'botões' dentro da 'div'.
grid-template-areas: // Organiza a distribuição da grade em 'quarteto' com os nomes identificadores.
"green red"
"yellow blue";
gap: 15px; // Espaçamento entre cada botão colorido, no 'quarteto'.
margin-left: 5px;
border: 0px solid white;
background-color:black;
border-radius: 100%; // Raio da borda, criando formato circular. (Semelhante ao formato do jogo Genius)
height: 600px;
width: 600px;
button {
font-family: $fonte;
background: hsl(350deg 50% 25%);
border-radius: 7px;
border: none;
padding: 0;
outline-offset: 20px;
span { // Formatação do texto dos botões.
font-family: $fonte;
font-size: 32px;
}
}
.green {
grid-area: green; // Atribui o nome identificador 'green' da propriedade 'grid-template-areas' à este elemento.
background-color: $bt-vd; // Define a cor de fundo.
border-top-left-radius: 100%; // Define o raio da borda, seguindo a orientação circular. (Topo-Esquerda)
&:active {
transform: translateX(5px) translateY(5px);
}
&.selected {
background: #63f585;
box-shadow: 0 0 10px #63f585,0 0 40px #63f585, 0 0 80px #63f585, 0 0 160px #63f585 ;
}
}
.red {
grid-area: red; // Atribui o nome identificador 'red' da propriedade 'grid-template-areas' à este elemento.
background-color: $bt-vm; // Define a cor de fundo.
border-top-right-radius: 100%; // Define o raio da borda, seguindo a orientação circular. (Topo-Direita)
&:active {
transform: translateX(-5px) translateY(5px);
}
&.selected {
background: #f8766b;
box-shadow: 0 0 10px #f8766b,0 0 40px #f8766b, 0 0 80px #f8766b, 0 0 160px #f8766b ;
}
}
.blue {
grid-area: blue; // Atribui o nome identificador 'blue' da propriedade 'grid-template-areas' à este elemento.
background-color: $bt-az; // Define a cor de fundo.
border-bottom-right-radius: 100%; // Define o raio da borda, seguindo a orientação circular. (Fundo-Direita)
&:active {
transform: translateX(-5px) translateY(-5px);
}
&.selected {
background: #7bd3e1;
box-shadow: 0 0 10px #7bd3e1,0 0 40px #7bd3e1, 0 0 80px #7bd3e1, 0 0 160px #7bd3e1 ;
}
}
.yellow {
grid-area: yellow; // Atribui o nome identificador 'yellow' da propriedade 'grid-template-areas' à este elemento.
background-color: $bt-am; // Define a cor de fundo.
border-bottom-left-radius: 100%; // Define o raio da borda, seguindo a orientação circular. (Fundo-Esquerda)
&:active {
transform: translateX(5px) translateY(-5px);
}
&.selected {
background: #fdff8e;
box-shadow: 0 0 10px #fdff8e,0 0 40px #fdff8e, 0 0 80px #fdff8e, 0 0 160px #fdff8e ;
}
}
}
}
.center-screen {
margin-left: -475px;
border: 0px solid white;
background-color:black;
border-radius: 100%; // Raio da borda, criando formato circular. (Semelhante ao formato do jogo Genius)
height: 200px;
width: 200px;
transform: translateZ(10px);
}
}
}