add Lemon font and h1 styling

This commit is contained in:
lamacchinadesiderante 2024-04-25 17:33:19 +02:00
parent cc9369edc6
commit 9168c0f469
4 changed files with 33 additions and 1 deletions

Binary file not shown.

29
src/styles/_font.scss Normal file
View File

@ -0,0 +1,29 @@
@import "./breakpoints";
@import "./spacing";
@font-face {
font-family: 'Lemon Yellow Sun';
src: url("/font/LemonYellowSun.otf") format("opentype");
}
a {
text-decoration: none !important;
}
h1,
h2,
h3,
h4,
h5 {
font-family: 'Lemon Yellow Sun' !important;
}
h1 {
font-size: $spacing_48;
}
span,
p,
div {
font-family: 'Roboto,Arial' sans-serif !important;
}

View File

@ -2,4 +2,5 @@ $spacing_4: 4px;
$spacing_8: 8px;
$spacing_16: 16px;
$spacing_32: 32px;
$spacing_48: 48px;
$spacing_64: 64px;

View File

@ -1 +1,3 @@
@use "@picocss/pico";
@use "@picocss/pico";
@import "./font"