22 lines
537 B
CSS
22 lines
537 B
CSS
@import url('https://fonts.googleapis.com/css?family=Raleway');
|
|
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans');
|
|
|
|
html {
|
|
font-family: 'Raleway';
|
|
/*background-color: #15171B;*/
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
}
|
|
canvas, img {
|
|
image-rendering: optimizeSpeed;
|
|
image-rendering: -moz-crisp-edges;
|
|
image-rendering: -webkit-optimize-contrast;
|
|
image-rendering: optimize-contrast;
|
|
image-rendering: pixelated;
|
|
-ms-interpolation-mode: nearest-neighbor;
|
|
width: 480px;
|
|
height: 480px;
|
|
}
|