-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
47 lines (42 loc) · 750 Bytes
/
index.css
File metadata and controls
47 lines (42 loc) · 750 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
40
41
42
43
44
45
46
47
html, body {
height: 100%;
margin: 0;
background-color: #000;
}
#overlay {
position: fixed;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
display: flex;
align-items: center;
justify-content: center;
font-size: 4em;
font-family: sans-serif;
color: #fff;
}
#controls {
height: 100%;
display: flex;
flex-direction: column;
gap: 1em;
user-select: none;
}
#controls button {
font-size: 10em;
display: flex;
flex: 1;
justify-content: center;
align-items: center;
border-radius: 0;
border: 0;
border-top: 1px solid #999;
border-bottom: 1px solid #999;
user-select: none;
}
#controls.left button {
background-color: red;
}
#controls.right button {
background-color: blue;
}