-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
46 lines (41 loc) · 1.1 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
/* Стили для страницы */
body {
font-family: Arial, Helvetica, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
margin: 20px;
background-color: #f5f5f5; /* Цвет фона страницы */
}
/* Стили для панели управления */
#controls {
margin-bottom: 10px;
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
padding: 10px;
align-items: center;
}
/* Стили для отображения текущего поколения */
#generation {
margin-top: 0.3em;
font-size: 18px;
margin-bottom: 0.8em; /* Отступ между поколением и игровым полем */
padding: 0.3em;
}
#controls, #grid-canvas, #generation {
/* border: 1px solid #000000; */
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#controls, #generation {
border-radius: 5px;
background-color: #fff;
}
/* Адаптивная верстка */
@media screen and (max-width: 600px) {
#controls {
flex-direction: column;
align-items: flex-start;
}
}