-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
39 lines (35 loc) · 985 Bytes
/
style.css
File metadata and controls
39 lines (35 loc) · 985 Bytes
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
body {
margin: 0; /* убираем отступы */
color: white; /* цвет шрифта */
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; /* шрифт теста */
}
#results, #instructions {
position: absolute;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
width: 100%;
background-color: rgba(20, 20, 20, 0.75);
}
/* сообщение о конце игры не показываем на старте */
#results {
display: none;
cursor: default;
}
/* отступы в текстах */
#results .content,
#instructions .content {
max-width: 300px;
padding: 50px;
border-radius: 20px;
}
/* настройка вывода набранных очков в правом верхнем углу */
#score {
position: absolute;
color: white;
font-size: 3em;
font-weight: bold;
top: 30px;
right: 30px;
}