-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (41 loc) · 764 Bytes
/
style.css
File metadata and controls
47 lines (41 loc) · 764 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
body{
margin:0;
background:darkgray;
overflow:hidden;
display:flex;
justify-content:center;
align-items:center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#verticalButtons{
display:flex;
flex-direction:column;
position: absolute;
top: 10%;
left:20%;
font-weight: 600;
}
button{
border: 2px solid black;
border-radius: 5px;
padding: 5px 5px 7px 5px;
margin: 2px;
cursor:pointer;
}
button:hover{
background:black;
color:white;
}
#networkCanvas{
background:black;
opacity: 0;
z-index: -1;
pointer-events: none;
}
#carCanvas{
position: absolute;
top:50%;
left:50%;
transform: translate(-50%,-50%);
background:lightgray;
}