Skip to content

Commit

Permalink
Fix: vendor google fonts
Browse files Browse the repository at this point in the history
[CSS] Local fonts, working fonts!
  • Loading branch information
lwasser authored Dec 6, 2023
2 parents 0a05376 + b8fbbf7 commit 31461de
Show file tree
Hide file tree
Showing 7 changed files with 56 additions and 12 deletions.
Binary file added _static/fonts/itim-v14-latin-regular.woff2
Binary file not shown.
Binary file added _static/fonts/poppins-v20-latin-700.woff2
Binary file not shown.
Binary file added _static/fonts/poppins-v20-latin-700italic.woff2
Binary file not shown.
Binary file added _static/fonts/poppins-v20-latin-italic.woff2
Binary file not shown.
Binary file added _static/fonts/poppins-v20-latin-regular.woff2
Binary file not shown.
62 changes: 56 additions & 6 deletions _static/pyos.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@

/* Darkmode Adjustments*/
--pyos-dm-color-primary: #C483E0;

/* Fonts (overrides base theme) */
--pst-font-family-heading: 'Poppins', sans-serif;
--pst-font-family-base: 'Poppins', sans-serif;
--pyos-font-family-h1: 'Itim', serif;

}

html, body {
Expand All @@ -32,7 +38,6 @@ html, body {

html, body {
font-size: 1.02rem;
font-family: 'Poppins', sans-serif!important;
}

body p {
Expand All @@ -43,14 +48,10 @@ body p {
margin-bottom: 70px!important;
}

h2, h3, h4 {
font-family: 'Poppins', sans-serif!important;
}

h1 {
margin-top: 10px;
margin-bottom: 40px;
font-family: 'Itim' !important;
font-family: var(--pyos-font-family-h1) !important;
color: var(--pyos-h1-color);
}
h2 {
Expand Down Expand Up @@ -198,3 +199,52 @@ html[data-theme=dark] {
--pst-color-link-hover: var(--pyos-dm-color-primary);
--pyos-h1-color: var(--pyos-color-light);
}


/* -------------------------------------- */
/* Generated by https://gwfh.mranftl.com/ */

/* poppins-regular - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Poppins';
font-style: normal;
font-weight: 400;
src: url('./fonts/poppins-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-italic - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Poppins';
font-style: italic;
font-weight: 400;
src: url('./fonts/poppins-v20-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-700 - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Poppins';
font-style: normal;
font-weight: 700;
src: url('./fonts/poppins-v20-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-700italic - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Poppins';
font-style: italic;
font-weight: 700;
src: url('./fonts/poppins-v20-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* itim-regular - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Itim';
font-style: normal;
font-weight: 400;
src: url('./fonts/itim-v14-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
6 changes: 0 additions & 6 deletions _templates/header.html

This file was deleted.

0 comments on commit 31461de

Please sign in to comment.