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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
#paused {
z-index: 5;
position: fixed;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
}
#paused > div {
background: #262626;
border-radius: 10px;
padding: 20px;
box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.25);
}
#paused * {
color: white;
}
.services li {
padding: 10px;
font-size: 28px;
width: 256px;
list-style: none;
color: transparent;
margin-top: 10px;
margin-bottom: 10px;
border-radius: 10px;
}
.services li a {
color: white !important;
text-decoration: none;
transition: color 200ms;
}
.services li.selected a {
color: black !important;
text-decoration: none;
}
.services li.selected {
background-color: #00ff99;
}
.services li {
background-color: #383838;
transition: margin-left 200ms, background-color 200ms;
}
#circuit.hitboxes, #circuit.hitboxes * {
outline: 1px dashed blue;
}
#car0, #car1 {
transition: top 600ms, bottom 600ms, left 600ms, right 600ms, transform 500ms;
}
#box.paused {
opacity: .5;
}
circuit {
display: none;
}
#credits-inner {
position: fixed;
z-index: 9;
background: #171717;
color: white;
padding: 20px;
display: grid;
font-size: 11px;
top: 200px;
left: 0;
right: 0;
}
#credits .big {
font-size: 15px;
font-weight: bold;
}
#credits #race, #credits #musicb {
display: grid;
grid-template-columns: 48px 1fr;
}
#credits-inner > * > * {
vertical-align: middle;
}
#credits img {
filter: invert(100%);
}
#credits .cbox {
width: max-content;
}
#laps-inner-car0 {
background: rgba(0, 0, 0, .5);
position: fixed;
bottom: 20px;
left: 20px;
z-index: 9;
border-radius: 9999px;
width: 40px;
height: 43px;
text-align: center;
color: white;
padding: 7px 10px 10px;
}
#laps-inner-car1 {
background: rgba(0, 0, 0, .5);
position: fixed;
bottom: 20px;
right: 20px;
z-index: 9;
border-radius: 9999px;
width: 40px;
height: 43px;
text-align: center;
color: white;
padding: 7px 10px 10px;
}
.laps-inner-sep {
margin: 5px;
border: none;
border-top: 2px solid white;
}
#oil img {
position: fixed;
width: 32px;
z-index: 5;
opacity: .9;
}
#credits {
background: rgba(0, 0, 0, .5);
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 9999;
}
|