updated style.css (27 feb 2024) to remove google fonts and make them local ones.

need to troubleshoot "local src" on fedora
This commit is contained in:
Jacob Haddon 2024-04-29 18:47:52 -04:00
parent a8fcd6da5c
commit 1637ab961c

View File

@ -15,8 +15,32 @@
/* ## Typography ## */ /* ## Typography ## */
@import url(https://fonts.googleapis.com/css?family=Raleway:400,100,100italic,400italic,700,700italic); /* @import url(https://fonts.googleapis.com/css?family=Raleway:400,100,100italic,400italic,700,700italic); */
@import url(https://fonts.googleapis.com/css2?family=IBM+Plex+Mono); /* @import url(https://fonts.googleapis.com/css2?family=IBM+Plex+Mono); */
@font-face {
font-family: "IBM_Plex_Mono";
src:
local("IBM Plex Mono"),
url("fonts/IBM_Plex_Mono/IBMPlexMono-Regular.ttf");
font-weight: normal;
}
@font-face {
font-family: "RalewayV";
src:
local("Raleway"),
url("fonts/Raleway/Raleway-VariableFont_wght.ttf");
font-style: normal;
}
@font-face {
font-family: "RalewayV";
src:
local("Raleway"),
url("fonts/Raleway/Raleway-Italic-VariableFont_wght.ttf");
font-style: italic;
}
/* Serif */ /* Serif */
body, body,
@ -46,18 +70,25 @@ blockquote,
.widecolumn .mu_register label, .widecolumn .mu_register label,
.wp-block-pullquote, .wp-block-pullquote,
.wp-block-quote, .wp-block-quote,
.main-navigation { font-family: Raleway, "Helvetica Neue", sans-serif; } .main-navigation { font-family: RalewayV, "Helvetica Neue", sans-serif; }
/* Monospace */ /* Monospace */
pre, pre,
code, code,
.wp-block-code, .wp-block-code,
.wp-block-code code,
.wp-block-preformatted .wp-block-preformatted
{ {
font-family: 'IBM Plex Mono', monospace; font-family: 'IBM_Plex_Mono', monospace;
background-color: transparent; background-color: transparent;
} }
/* ## Regular Tags */
body {
/* background-color: white; */
}
/* ## Gutenberg Blocks ## */ /* ## Gutenberg Blocks ## */
.wp-block-verse .wp-block-verse
{ {