21 lines
406 B
CSS
21 lines
406 B
CSS
@font-face {
|
|
font-family: "Nintendo DS BIOS";
|
|
src: url("/assets/Nintendo-DS-BIOS.ttf") format("truetype");
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: "Nintendo DS BIOS", monospace;
|
|
-webkit-font-smoothing: none;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
image-rendering: pixelated;
|
|
image-rendering: crisp-edges;
|
|
}
|