29 lines
437 B
CSS
29 lines
437 B
CSS
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;
|
|
}
|