-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
75 lines (66 loc) · 1.23 KB
/
style.css
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
body{
margin: 0px;
background : grey;
overflow: hidden;
}
#main{
display: flex;
justify-content: center;
align-items: center;
}
#inputs{
margin:0px;
display: flex;
flex-direction: row;
border-bottom: 2px double #0a0a0a;
position: relative;
background:rgba(106, 95, 95, 0.35);
}
#inputs #label{
display: flex;
flex-direction: row;
margin: 10px;
}
#input .display{
background-color : white;
}
#verticalButtons{
display: flex;
flex-direction: column;
}
button{
border: none;
border-radius: 5px;
margin: 5px;
padding: 5px 5px 7px 5px;
}
button:hover{
background-color: antiquewhite;
}
.slider{
-webkit-appearance: none;
height : 7px;
outline : none;
border-radius: 3px;
margin: 10px;
}
.slider::-webkit-slider-thumb{
/* -webkit-appearance: none; */
width: 48px;
height: 48px;
cursor: pointer;
z-index: 3;
}
#networkCanvas{
background-color: black;
}
#carCanvas{
background-color: lightgrey;
}
#scoreChart{
margin-left: 25px;
background-color: rgb(255, 253, 253);
width: 450px;
height: 1000px;
border: 2px solid #0a0a0a;
}