v0.1/styling-and-bug-fixes #38

Merged
lamacchinadesiderante merged 5 commits from v0.1/styling-and-bug-fixes into main 2024-04-25 21:14:47 +00:00
4 changed files with 33 additions and 1 deletions
Showing only changes of commit 9168c0f469 - Show all commits

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"