-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.css
More file actions
56 lines (50 loc) · 829 Bytes
/
base.css
File metadata and controls
56 lines (50 loc) · 829 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
48
49
50
51
52
53
54
55
56
.header {
font-size: 3em;
color: white;
background: #404040;
text-align: center;
height: 2.5em;
text-shadow: 4px 4px 4px black;
display: flex;
justify-content: center;
align-items: center;
}
#error {
font-size: 2em;
color: red;
height: 50px;
text-shadow: 2px 2px 2px black;
margin: 2em;
display: none;
}
.container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.visible {
display: block;
}
#target {
top: 0;
left: 0;
position: fixed;
}
#framecounter {
position: fixed;
bottom: 0;
left: 0;
color: white;
font-family: Arial, Helvetica, sans-serif;
font-size: 1.0em;
text-shadow: 2px 2px 2px black;
padding: 0.5em;
z-index: 101;
}
body {
background: #000000;
margin: 0;
padding: 0;
overscroll-behavior: none;
}