24 lines
740 B
CSS
24 lines
740 B
CSS
/*@font-face {
|
|
font-family: 'nowayregular';
|
|
src: url('./assets/fonts/noway-regular-webfont.eot');
|
|
src: url('./assets/fonts/noway-regular-webfont.eot?#iefix') format('embedded-opentype'),
|
|
url('./assets/fonts/noway-regular-webfont.woff2') format('woff2'),
|
|
url('./assets/fonts/noway-regular-webfont.woff') format('woff'),
|
|
url('./assets/fonts/noway-regular-webfont.ttf') format('truetype'),
|
|
url('./assets/fonts/noway-regular-webfont.svg#nowayregular') format('svg');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
*/
|
|
body {
|
|
background-color: #181818;
|
|
}
|
|
|
|
canvas{
|
|
display:block;
|
|
margin: 0;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
} |