Compare commits

2 Commits

Author SHA1 Message Date
1637ab961c updated style.css (27 feb 2024) to remove google fonts and make them local ones.
need to troubleshoot "local src" on fedora
2024-04-29 18:47:52 -04:00
a8fcd6da5c updated theme URL to a correct address 2024-02-17 19:43:36 -05:00

View File

@ -1,6 +1,6 @@
/* /*
Theme Name: Haddon 2016 Theme Name: Haddon 2016
Theme URI: https://github.com/jakeosx/twenty-sixteen-child-theme Theme URI: https://code.jacobhaddon.com/Wordpress/Haddon2016
Description: Twenty Sixteen Child Theme with dark mode theme; CSS arranged for easy font configuration Description: Twenty Sixteen Child Theme with dark mode theme; CSS arranged for easy font configuration
Author: Jacob Haddon Author: Jacob Haddon
Author URI: http://jacobhaddon.com Author URI: http://jacobhaddon.com
@ -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
{ {