2020-06-28 14:33:05 -04:00
|
|
|
/*
|
2023-08-30 15:14:22 -04:00
|
|
|
Theme Name: Haddon 2016
|
2024-02-17 19:43:36 -05:00
|
|
|
Theme URI: https://code.jacobhaddon.com/Wordpress/Haddon2016
|
2020-11-10 16:38:37 -05:00
|
|
|
Description: Twenty Sixteen Child Theme with dark mode theme; CSS arranged for easy font configuration
|
2020-06-28 14:33:05 -04:00
|
|
|
Author: Jacob Haddon
|
|
|
|
Author URI: http://jacobhaddon.com
|
|
|
|
Template: twentysixteen
|
2023-08-30 15:14:22 -04:00
|
|
|
Version: 1.3.1
|
2020-06-28 14:33:05 -04:00
|
|
|
License: GNU General Public License v2 or later
|
|
|
|
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
2020-11-01 22:14:16 -05:00
|
|
|
Tags: Twenty Sixteen, Dark Mode
|
2020-06-28 14:33:05 -04:00
|
|
|
Text Domain: twenty-sixteen-child
|
2020-11-10 16:38:37 -05:00
|
|
|
Template URI: https://wordpress.org/themes/twentysixteen/
|
2020-06-28 14:33:05 -04:00
|
|
|
*/
|
|
|
|
|
2020-06-28 15:33:23 -04:00
|
|
|
/* ## Typography ## */
|
2020-06-28 14:33:05 -04:00
|
|
|
|
2024-04-29 18:47:52 -04:00
|
|
|
/* @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); */
|
|
|
|
|
|
|
|
@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;
|
|
|
|
}
|
2020-06-28 14:33:05 -04:00
|
|
|
|
2020-06-28 15:33:23 -04:00
|
|
|
/* Serif */
|
2020-06-28 14:33:05 -04:00
|
|
|
body,
|
|
|
|
button,
|
|
|
|
input,
|
|
|
|
select,
|
2020-06-28 15:33:23 -04:00
|
|
|
textarea,
|
2023-08-30 15:14:22 -04:00
|
|
|
.wp-block-verse { font-family: Merriweather, Georgia, serif; }
|
2020-06-28 14:33:05 -04:00
|
|
|
|
2020-06-28 15:33:23 -04:00
|
|
|
/* Sans-Serif */
|
|
|
|
blockquote,
|
2020-06-28 14:33:05 -04:00
|
|
|
.tagcloud a,
|
|
|
|
.site-title,
|
|
|
|
.entry-title,
|
|
|
|
.entry-footer,
|
|
|
|
.sticky-post,
|
|
|
|
.page-title,
|
|
|
|
.page-links,
|
|
|
|
.comments-title,
|
|
|
|
.comment-reply-title,
|
|
|
|
.comment-metadata,
|
|
|
|
.pingback .edit-link,
|
|
|
|
.comment-reply-link,
|
|
|
|
.comment-form label,
|
|
|
|
.no-comments,
|
|
|
|
.widecolumn label,
|
2020-06-28 15:33:23 -04:00
|
|
|
.widecolumn .mu_register label,
|
|
|
|
.wp-block-pullquote,
|
2020-11-01 22:04:42 -05:00
|
|
|
.wp-block-quote,
|
2024-04-29 18:47:52 -04:00
|
|
|
.main-navigation { font-family: RalewayV, "Helvetica Neue", sans-serif; }
|
2020-06-28 14:33:05 -04:00
|
|
|
|
2020-06-28 15:33:23 -04:00
|
|
|
/* Monospace */
|
|
|
|
pre,
|
|
|
|
code,
|
2023-08-30 15:14:22 -04:00
|
|
|
.wp-block-code,
|
2024-04-29 18:47:52 -04:00
|
|
|
.wp-block-code code,
|
2023-08-30 15:14:22 -04:00
|
|
|
.wp-block-preformatted
|
2020-06-28 15:33:23 -04:00
|
|
|
{
|
2024-04-29 18:47:52 -04:00
|
|
|
font-family: 'IBM_Plex_Mono', monospace;
|
2020-11-01 22:04:42 -05:00
|
|
|
background-color: transparent;
|
2020-06-28 15:33:23 -04:00
|
|
|
}
|
2020-06-28 14:33:05 -04:00
|
|
|
|
2024-04-29 18:47:52 -04:00
|
|
|
/* ## Regular Tags */
|
|
|
|
|
|
|
|
body {
|
|
|
|
/* background-color: white; */
|
|
|
|
}
|
|
|
|
|
2020-06-28 15:33:23 -04:00
|
|
|
/* ## Gutenberg Blocks ## */
|
|
|
|
.wp-block-verse
|
|
|
|
{
|
|
|
|
border: none;
|
|
|
|
line-height: 1.8;
|
2020-06-28 14:33:05 -04:00
|
|
|
}
|
|
|
|
|
2020-11-01 22:04:42 -05:00
|
|
|
.wp-block-pullquote blockquote { font-style: normal; }
|
2020-06-28 14:33:05 -04:00
|
|
|
|
2020-06-28 15:33:23 -04:00
|
|
|
/* ## Misc ## */
|
|
|
|
.site-title
|
|
|
|
{
|
|
|
|
font-weight: 100;
|
|
|
|
font-size: 48px;
|
2020-06-28 14:33:05 -04:00
|
|
|
}
|
|
|
|
|
2020-11-01 22:04:42 -05:00
|
|
|
.entry-title { font-weight: 400; }
|
2020-06-28 14:33:05 -04:00
|
|
|
|
2020-06-28 15:33:23 -04:00
|
|
|
/* for the iframes amazon makes */
|
2020-11-01 22:04:42 -05:00
|
|
|
.amazonpreview { float: none; }
|
|
|
|
|
|
|
|
.alignwide img.below-entry-meta
|
|
|
|
{
|
|
|
|
clear: both;
|
|
|
|
display: block;
|
|
|
|
float: none;
|
|
|
|
margin-right: 0;
|
|
|
|
margin-left: 0;
|
|
|
|
max-width: 100%;
|
2020-06-28 15:33:23 -04:00
|
|
|
}
|
2020-06-28 14:33:05 -04:00
|
|
|
|
2020-06-28 15:33:23 -04:00
|
|
|
/* ## Media levels in 2016 below ## */
|
2020-06-28 14:33:05 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 14.1 - >= 710px
|
|
|
|
*/
|
|
|
|
|
2020-06-28 15:33:23 -04:00
|
|
|
@media screen and (min-width: 44.375em)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2020-06-28 14:33:05 -04:00
|
|
|
|
2020-06-28 15:33:23 -04:00
|
|
|
/* media 710px */
|
2020-06-28 14:33:05 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 14.2 - >= 783px
|
|
|
|
*/
|
|
|
|
|
2020-06-28 15:33:23 -04:00
|
|
|
@media screen and (min-width: 48.9375em)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2020-06-28 14:33:05 -04:00
|
|
|
|
2020-06-28 15:33:23 -04:00
|
|
|
/* media 738px */
|
2020-06-28 14:33:05 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 14.3 - >= 910px
|
|
|
|
*/
|
|
|
|
|
2020-06-28 15:33:23 -04:00
|
|
|
@media screen and (min-width: 56.875em)
|
|
|
|
{
|
|
|
|
.amazonpreview { float: right; }
|
2020-06-28 14:33:05 -04:00
|
|
|
}
|
|
|
|
|
2020-06-28 15:33:23 -04:00
|
|
|
/* media 910px */
|
2020-06-28 14:33:05 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 14.4 - >= 985px
|
|
|
|
*/
|
|
|
|
|
2020-06-28 15:33:23 -04:00
|
|
|
@media screen and (min-width: 61.5625em)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2020-06-28 14:33:05 -04:00
|
|
|
|
2020-11-29 15:46:50 -05:00
|
|
|
/* media 985px */
|