33 lines
670 B
CSS
33 lines
670 B
CSS
@font-face {
|
|
font-family: 'Minecraft';
|
|
src: url('/fonts/minecraft/MinecraftRegular.otf');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
@font-face {
|
|
font-family: 'Minecraft';
|
|
src: url('/fonts/minecraft/MinecraftBold.otf');
|
|
font-weight: bold;
|
|
font-style: normal;
|
|
}
|
|
@font-face {
|
|
font-family: 'Minecraft';
|
|
src: url('/fonts/minecraft/MinecraftBoldItalic.otf');
|
|
font-weight: bold;
|
|
font-style: italic;
|
|
}
|
|
@font-face {
|
|
font-family: 'Minecraft';
|
|
src: url('/fonts/minecraft/MinecraftItalic.otf');
|
|
font-weight: normal;
|
|
font-style: italic;
|
|
}
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
* {
|
|
font-family: 'Titillium Web', sans-serif;
|
|
}
|