26 lines
427 B
CSS
26 lines
427 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@font-face {
|
|
font-family: 'Iosevka';
|
|
src: url('../font/ioseevka_term_regular.ttf') format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'TitleFont';
|
|
src: url('../font/OFLGoudyStMTT.ttf') format('truetype');
|
|
}
|
|
|
|
body {
|
|
font-family: Iosevka;
|
|
font-weight: 100;
|
|
}
|
|
|
|
|
|
.title {
|
|
font-family: TitleFont;
|
|
font-feature-settings: "c2sc", "smcp";
|
|
font-size: 72px;
|
|
}
|
|
|