15 lines
129 B
CSS
15 lines
129 B
CSS
|
|
* {
|
||
|
|
padding: 0;
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
background: #000;
|
||
|
|
}
|
||
|
|
|
||
|
|
#canvas {
|
||
|
|
display: block;
|
||
|
|
margin: 1rem auto;
|
||
|
|
background: #fff;
|
||
|
|
}
|