-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (58 loc) · 1.35 KB
/
Copy pathstyle.css
File metadata and controls
67 lines (58 loc) · 1.35 KB
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
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
/*background-color: #f0f0f0;*/
/*background: linear-gradient(to right top, #c2c6ce, #a2d4e7, #79e4dd, #91edaa, #dde86b);*/
background: url("./img/greenBackground.avif" ) no-repeat;
background-size: cover;
font-family: 'Games', sans-serif;
}
canvas {
/*display: block;*/
/*display: none;*/
margin: 0 auto;
/*background: linear-gradient(to right top, #c2c6ce, #a2d4e7, #79e4dd, #91edaa, #dde86b);*/
}
#theGame {
display: none;
}
#nextWaveButton {
position: absolute;
bottom: 20px; /* Odsazení od spodu (dolů) */
right: 20px; /* Odsazení zprava */
width: 100px; /* Šířka tlačítka */
height: 50px; /* Výška tlačítka */
}
#menu {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
#menu h1 {
font-size: 50px;
margin-bottom: 0;
}
#menu h2 {
/*font-size: 20px;*/
margin-bottom: 50px;
}
#startButton {
/*barva podkladu*/
background-color: #4CAF50;
/*barva písma*/
color: white;
padding: 15px 100px;
border: none;
cursor: pointer;
font-size: 24px;
border-radius: 5px;
font-family: 'Games', sans-serif;
}
#startButton:hover {
background-color: #357935; /* Nová barva při hoveru */
}