forked from gniziemazity/self-driving-car
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (89 loc) · 1.99 KB
/
Copy pathstyle.css
File metadata and controls
102 lines (89 loc) · 1.99 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
body {
margin: 0;
background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.824), rgba(146, 146, 146, 0.689));
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Roboto', sans-serif;
/* add high dpi image-rendering */
-webkit-font-smoothing: antialiased;
}
button {
border: none;
border-radius: 5px;
padding: 8px;
margin: 2px;
cursor: pointer;
}
button:hover {
background: rgb(255, 163, 14);
}
#horizontalButtons {
display: table-column;
flex-direction: column;
}
/* controlCanvas */
#controlCanvas {
position: relative;
opacity: 100%;
border-radius: 5px;
margin: 5px;
height: 50;
width: 90%;
padding: 10px;
overflow: hidden;
color: white;
background-color: darksalmon;
font-weight: bold;
text-align: center;
}
row {
display: table-row;
}
/* add the design of settingsCanvas and make the font resize with the window width */
#settingsCanvas {
position: relative;
opacity: 100%;
border-radius: 5px;
margin: 5px;
width: 90%;
padding: 5px;
overflow: hidden;
color: white;
font-size: 30px;
font-weight: 300;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
#networkCanvas {
background: rgb(208, 208, 208);
opacity: 90%;
border-radius: 5px;
margin: 5px;
padding: 5px;
overflow: hidden;
height: 100%;
font-weight: 300;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
image-rendering: pixelated
}
#carCanvas {
background: lightgray;
opacity: 100%;
border-radius: 5px;
margin: 5px;
padding: 5px;
overflow: hidden;
height: 100%;
image-rendering: pixelated;
align-items: center;
flex-direction: column;
}