33 lines
581 B
CSS
33 lines
581 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@import url("https://fonts.googleapis.com/css2?family=Farro:wght@300;400;500;700&display=swap");
|
|
@font-face {
|
|
font-family: "CP_Font";
|
|
src: url("/fonts/cpfont_ote/CP Font.otf") format("opentype");
|
|
}
|
|
|
|
.pixelart {
|
|
image-rendering: pixelated;
|
|
image-rendering: -moz-crisp-edges;
|
|
image-rendering: crisp-edges;
|
|
}
|
|
|
|
.font-farro {
|
|
font-family: "Farro", sans-serif;
|
|
}
|
|
|
|
.font-checkpoint {
|
|
font-family: "CP_Font", sans-serif;
|
|
}
|
|
|
|
button {
|
|
cursor: none;
|
|
}
|
|
|
|
@media (pointer: fine) {
|
|
button {
|
|
cursor: pointer;
|
|
}
|
|
}
|