DmitrMakeev
commited on
Commit
•
28c4742
1
Parent(s):
2110c9f
Update koleso.html
Browse files- koleso.html +85 -0
koleso.html
CHANGED
@@ -154,7 +154,92 @@ body {
|
|
154 |
border-top: none;
|
155 |
}
|
156 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
157 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
|
159 |
|
160 |
</style>
|
|
|
154 |
border-top: none;
|
155 |
}
|
156 |
|
157 |
+
#wheelOfFortune {
|
158 |
+
display: flex;
|
159 |
+
flex-direction: column;
|
160 |
+
align-items: center;
|
161 |
+
justify-content: center;
|
162 |
+
border: 2px solid #f82; /* Оранжевая окантовка для колеса */
|
163 |
+
border-radius: 10px;
|
164 |
+
padding: 20px;
|
165 |
+
width: 90%;
|
166 |
+
max-width: 400px;
|
167 |
+
text-align: center;
|
168 |
+
}
|
169 |
+
|
170 |
+
#wheel {
|
171 |
+
border: 2px solid #f82; /* Оранжевая окантовка для колеса */
|
172 |
+
border-radius: 50%;
|
173 |
+
}
|
174 |
+
|
175 |
+
#spin {
|
176 |
+
margin-top: 20px;
|
177 |
+
padding: 10px 20px;
|
178 |
+
border: 2px solid #f82; /* Оранжевая окантовка для кнопки Пуск */
|
179 |
+
border-radius: 5px;
|
180 |
+
background-color: black;
|
181 |
+
color: white;
|
182 |
+
cursor: pointer;
|
183 |
+
transition: background-color 0.3s;
|
184 |
+
}
|
185 |
+
|
186 |
+
#spin:hover {
|
187 |
+
background-color: #f82; /* Оранжевый фон при наведении на кнопку Пуск */
|
188 |
+
}
|
189 |
+
|
190 |
+
#registrationForm {
|
191 |
+
display: none;
|
192 |
+
background-color: black;
|
193 |
+
padding: 20px;
|
194 |
+
border: 2px solid #f82; /* Оранжевая окантовка для формы */
|
195 |
+
border-radius: 10px;
|
196 |
+
text-align: center;
|
197 |
+
width: 90%;
|
198 |
+
max-width: 400px;
|
199 |
+
}
|
200 |
+
|
201 |
+
#registrationForm h1 {
|
202 |
+
color: #f82; /* Оранжевый цвет для заголовка */
|
203 |
+
margin-bottom: 20px;
|
204 |
+
}
|
205 |
+
|
206 |
+
#registrationForm input[type="text"],
|
207 |
+
#registrationForm input[type="email"],
|
208 |
+
#registrationForm input[type="tel"] {
|
209 |
+
width: calc(100% - 22px);
|
210 |
+
padding: 10px;
|
211 |
+
margin-bottom: 10px;
|
212 |
+
border: 2px solid #f82; /* Оранжевая окантовка для полей ввода */
|
213 |
+
border-radius: 5px;
|
214 |
+
background-color: black;
|
215 |
+
color: lightgray; /* Светло-серый цвет текста в полях ввода */
|
216 |
+
}
|
217 |
+
|
218 |
+
#registrationForm input[type="checkbox"] {
|
219 |
+
margin-right: 5px;
|
220 |
+
}
|
221 |
|
222 |
+
#registrationForm button {
|
223 |
+
width: 100%;
|
224 |
+
padding: 15px; /* Увеличенная высота кнопки */
|
225 |
+
border: none;
|
226 |
+
border-radius: 5px;
|
227 |
+
background-color: #f82; /* Оранжевая кнопка */
|
228 |
+
color: black;
|
229 |
+
font-weight: bold;
|
230 |
+
cursor: pointer;
|
231 |
+
transition: background-color 0.3s;
|
232 |
+
}
|
233 |
+
|
234 |
+
#registrationForm button:hover {
|
235 |
+
background-color: #ff9900; /* Светло-оранжевый при наведении */
|
236 |
+
}
|
237 |
+
|
238 |
+
@media (max-width: 600px) {
|
239 |
+
#registrationForm {
|
240 |
+
width: 95%;
|
241 |
+
}
|
242 |
+
}
|
243 |
|
244 |
|
245 |
</style>
|