-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
78 lines (68 loc) · 1.06 KB
/
styles.css
File metadata and controls
78 lines (68 loc) · 1.06 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
67
68
69
70
71
72
73
74
75
76
77
78
#pausemenu {
display: none;
}
#pausemenu.ispaused {
display: block;
}
.overlaytext {
text-align: center;
font-size: 12vh;
}
.pausesubtext {
font-size: 7vh;
}
.names {
font-size: 5vh;
margin-top: -2vh;
}
.overlay {
line-height: 6vh;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
padding-top: 30px;
color: #FFFFFF;
z-index: 3;
}
.overlaybg {
background-color: rgba(0, 0, 0, 0.6);
}
#losemenu {
padding-top: 60px;
display: none;
}
#losemenu.ispaused {
display: block;
}
#practicemode {
display: none;
}
#practicemode.ispractice {
display: block;
}
.practicetext {
padding: 5px 10px 10px;
position: absolute;
right: 4vw;
bottom: 4vh;
color: #FFFFFF;
z-index: 2;
font-size: 2.5vw;
text-align: right;
}
#speedmenu {
display: none;
position: absolute;
left: 4vw;
bottom: 4vh;
color: #FFFFFF;
z-index: 2;
text-align: center;
font-size: 2.5vw;
padding-bottom: 10px;
}
#speedmenu.ispractice {
display: block;
}