23 lines
293 B
CSS
23 lines
293 B
CSS
|
body {
|
||
|
margin-left: 20px;
|
||
|
margin-top: 20px;
|
||
|
color: #fcfcfc;
|
||
|
background-color: #202020;
|
||
|
}
|
||
|
|
||
|
#app {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
width: 600px;
|
||
|
}
|
||
|
|
||
|
canvas {
|
||
|
float: left;
|
||
|
background-color: #020202;
|
||
|
border-radius: 10px;
|
||
|
margin-top: 5px;
|
||
|
}
|
||
|
|
||
|
input {
|
||
|
margin-top: 5px;
|
||
|
}
|