self driving car

This commit is contained in:
QkoSad
2022-11-07 19:26:26 +02:00
commit f79d283c96
12 changed files with 827 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
body {
margin: 0;
background: darkgray;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
}
#verticalButtons {
display: flex;
flex-direction: column;
}
button {
border: none;
border-radius: 5px;
margin: 2px;
padding: 5px 5px 7px 5px;
cursor: pointer;
}
button:hover {
background: blue;
}
#carCanvas {
background: lightgray;
}
#networkCanvas {
background: black;
}