-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
172 lines (141 loc) · 3.64 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
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
* {
margin: 0;
padding: 0;
}
body {
margin: 0;
padding: 0;
background-image: url(background.png);
display: flex;
height: 100vh;
justify-content: center;
align-items: center;
background-size: contain;
background-repeat:repeat-x ;
}
body::before {
content: "";
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1; /* Coloca o pseudo-elemento atrás de todos os outros elementos */
background-image: inherit;
background-size: cover;
filter: blur(4px); /* Ajuste o valor do blur conforme necessário */
}
div.content{
background-color: rgba(16, 37, 228, 0);
padding: 5px 40px 5px 40px;
position: relative;
z-index: 1; /* Certifica-se de que a "caixa de conteúdo" está na frente do pseudo-elemento */
text-align: center;
}
h1 {
text-align: center;
margin: 0;
font-size: 4em;
font-family:Nabla;
margin-top: 20px;
}
.game {
display: flex;
justify-content: center;
align-items: center;
background-color: rgba(100, 97, 97, 0.89);
width: 400px; /* Tamanho da div principal */
height: 400px; /* Tamanho da div principal */
border-radius: 50%; /* Cria a forma redonda para a div principal */
position: relative; /* Define a posição relativa para que as divs filhas sejam posicionadas em relação a ela */
margin-top: 60px;
}
.central-circle {
display: flex;
justify-content: center;
align-items: center;
background-color: rgba(131, 40, 40, 0);
width: 360px; /* Tamanho da div central (círculo) */
height: 360px; /* Tamanho da div central (círculo) */
border-radius: 50%; /* Cria a forma redonda para a div central */
position: relative; /* Define a posição relativa */
}
.color {
width: 120px; /* Tamanho das cores */
height: 120px; /* Tamanho das cores */
border-radius: 50%; /* Cria a forma redonda */
position: absolute; /* Define a posição absoluta */
}
.vermelho {
background-color: red;
top: 0;
left: 50%;
transform: translateX(-50%);
}
.azul {
background-color: blue;
top: 50%;
right: 0;
transform: translateY(-50%);
}
.verde {
background-color: green;
bottom: 0;
left: 50%;
transform: translateX(-50%);
}
.amarelo {
background-color: yellow;
top: 50%;
left: 0;
transform: translateY(-50%);
}
.piscar {
animation: piscar 0.5s alternate infinite;
}
@keyframes piscar {
0% {
background-color: inherit;
}
100% {
background-color: white;
}}
div.sorteada{background-color: rgb(223, 4, 205);
}
.button {
display: inline-block;
padding: 20px 27px;
margin: 1px;
font-size: 10px;
font-weight: bold;
text-transform: uppercase;
color: #fff;
background-image: linear-gradient(to bottom right, #00c6ff, #0072ff);
border: none;
border-radius: 40px;
box-shadow: 0px 4px 0px #0072ff;
transition: all 0.2s ease-in-out;
}
.button:hover {
transform: translateY(-5px);
box-shadow: 0px 6px 0px #0072ff;
}
.button:active {
transform: translateY(0px);
box-shadow: none;
background-image: linear-gradient(to bottom right, #0072ff, #00c6ff);
}
.button:before,
.button:after {
content: "";
position: absolute;
width: 0;
height: 0;
}
.button:before {
top: -3px;
left: -3px;
border-radius: 40px;
border-top: 3px solid #fff;
border-left: 3px solid #fff;
}