Compare commits

...

2 Commits

Author SHA1 Message Date
Amolith cbfa685748
update fonts 2023-08-29 15:18:24 -04:00
Amolith f14de71c02
update ignored fonts 2023-08-29 15:17:46 -04:00
2 changed files with 63 additions and 2 deletions

3
.gitignore vendored
View File

@ -9,6 +9,5 @@ hugo.darwin
hugo.linux
# Proprietary fonts
static/assets/fonts/triplicate
static/assets/fonts/valkyrie
static/assets/fonts/heliotrope
static/assets/fonts/berkeley

View File

@ -1,3 +1,6 @@
/**************/
/* HELIOTROPE */
/**************/
@font-face {
font-family: Heliotrope;
font-style: normal;
@ -17,3 +20,62 @@
font-display: swap;
src: url('/assets/fonts/heliotrope/heliotrope_4_italic.woff2') format('woff2');
}
@font-face {
font-family: Heliotrope;
font-style: normal;
font-weight: bold;
font-stretch: normal;
font-display: auto;
src: url('/assets/fonts/heliotrope/heliotrope_4_bold.woff2') format('woff2');
}
@font-face {
font-family: Heliotrope;
font-style: italic;
font-weight: bold;
font-stretch: normal;
font-display: auto;
src: url('/assets/fonts/heliotrope/heliotrope_4_bold_italic.woff2') format('woff2');
}
/*****************/
/* BERKELEY MONO */
/*****************/
@font-face {
font-family: "Berkeley Mono";
font-style: normal;
font-weight: normal;
font-stretch: normal;
font-stretch: normal;
font-display: swap;
src: url('/assets/fonts/berkeley/berkeley_mono-regular.woff2') format('woff2');
}
@font-face {
font-family: "Berkeley Mono";
font-style: italic;
font-weight: normal;
font-stretch: normal;
font-stretch: normal;
font-display: swap;
src: url('/assets/fonts/berkeley/berkeley_mono-italic.woff2') format('woff2');
}
@font-face {
font-family: "Berkeley Mono";
font-style: normal;
font-weight: bold;
font-stretch: normal;
font-display: auto;
src: url('/assets/fonts/berkeley/berkeley_mono-bold.woff2') format('woff2');
}
@font-face {
font-family: "Berkeley Mono";
font-style: italic;
font-weight: bold;
font-stretch: normal;
font-display: auto;
src: url('/assets/fonts/berkeley/berkeley_mono-bold_italic.woff2') format('woff2');
}