16 lines
244 B
CSS
16 lines
244 B
CSS
@import url(https://fonts.googleapis.com/css?family=Roboto);
|
|
|
|
html, body {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: 'Roboto', sans-serif;
|
|
background: black;
|
|
}
|
|
|
|
canvas {
|
|
padding: 0px;
|
|
text-align: center;
|
|
}
|
|
|