25 lines
419 B
CSS
25 lines
419 B
CSS
@font-face {
|
|
font-family: "NDS7";
|
|
src: url("/assets/fonts/nds-7px.woff2") format("woff2");
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "NDS10";
|
|
src: url("/assets/fonts/nds-10px.woff2") format("woff2");
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
image-rendering: pixelated;
|
|
image-rendering: crisp-edges;
|
|
}
|