This commit is contained in:
2024-11-10 16:32:36 -05:00
parent 5f71b62dc8
commit 4121dcb334
51 changed files with 1417 additions and 273 deletions

17
css/fonts.css Normal file
View File

@ -0,0 +1,17 @@
@font-face {
font-family: 'Hasklig';
src: url('/assets/webfonts/hasklig-semibold-webfont.woff2') format('woff2'),
url('/assets/webfonts/hasklig-semibold-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Lato';
src: url('/assets/webfonts/lato-regular-webfont.woff2') format('woff2'),
url('/assets/webfonts/lato-regular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}

30
css/main.scss Normal file
View File

@ -0,0 +1,30 @@
---
# Main scss file
---
@charset "utf-8";
// Helpers
@import
'helpers/mixins',
'helpers/variables';
// Base
@import
'base/reset';
// Utilities
@import
'utilities/layout',
'utilities/separator';
// Components
@import
'components/page',
'components/article',
'components/tag',
'components/archives';
// Vendor
@import
'vendor/highlight';