2019-08-15 15:20:03 +00:00
|
|
|
|
@charset "UTF-8";
|
|
|
|
|
/*
|
|
|
|
|
Theme Name: Dalston
|
2022-05-25 13:48:00 +00:00
|
|
|
|
Theme URI: https://wordpress.com/theme/dalston
|
2019-08-15 15:20:03 +00:00
|
|
|
|
Author: Automattic
|
|
|
|
|
Author URI: https://automattic.com/
|
2019-09-26 21:24:54 +00:00
|
|
|
|
Description: Make your online portfolio impressively awesome with Dalston. With the ability to beautifully highlight your illustration and other projects, Dalston is also versatile enough to be your personal site too.
|
2019-08-15 15:20:03 +00:00
|
|
|
|
Requires at least: WordPress 4.9.6
|
2024-07-08 15:54:52 +00:00
|
|
|
|
Version: 1.3.30
|
2019-08-15 15:20:03 +00:00
|
|
|
|
License: GNU General Public License v2 or later
|
|
|
|
|
License URI: LICENSE
|
|
|
|
|
Template: varia
|
|
|
|
|
Text Domain: dalston
|
2019-10-25 11:54:04 +00:00
|
|
|
|
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
|
2019-08-15 15:20:03 +00:00
|
|
|
|
|
|
|
|
|
This theme, like WordPress, is licensed under the GPL.
|
|
|
|
|
Use it to make something cool, have fun, and share what you've learned with others.
|
|
|
|
|
|
2020-11-06 18:52:51 +00:00
|
|
|
|
Dalston is a child theme of Varia which is based on Underscores https://underscores.me/, (C) 2012-2019 Automattic, Inc.
|
2019-08-15 15:20:03 +00:00
|
|
|
|
Underscores is distributed under the terms of the GNU GPL v2 or later.
|
|
|
|
|
|
|
|
|
|
Normalizing styles have been helped along thanks to the fine work of
|
|
|
|
|
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Abstracts
|
|
|
|
|
* - Mixins, variables and functions
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Abstracts
|
|
|
|
|
* - Mixins, variables and functions
|
|
|
|
|
*/
|
|
|
|
|
/* Sass Functions go here */
|
|
|
|
|
/**
|
|
|
|
|
* Map deep get
|
|
|
|
|
* @author Hugo Giraudel
|
|
|
|
|
* @access public
|
|
|
|
|
* @param {Map} $map - Map
|
|
|
|
|
* @param {Arglist} $keys - Key chain
|
|
|
|
|
* @return {*} - Desired value
|
|
|
|
|
*
|
|
|
|
|
* Example:
|
|
|
|
|
* $m-breakpoint: map-deep-get($__prefix-default-config, "layouts", "M");
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Deep set function to set a value in nested maps
|
|
|
|
|
* @author Hugo Giraudel
|
|
|
|
|
* @access public
|
|
|
|
|
* @param {Map} $map - Map
|
|
|
|
|
* @param {List} $keys - Key chaine
|
|
|
|
|
* @param {*} $value - Value to assign
|
|
|
|
|
* @return {Map}
|
|
|
|
|
*
|
|
|
|
|
* Example:
|
|
|
|
|
* $__prefix-default-config: map-deep-set($__prefix-default-config, "layouts" "M", 650px);
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* jQuery-style extend function
|
|
|
|
|
* - Child themes can use this function to `reset` the values in
|
|
|
|
|
* config maps without editing the `master` Sass files.
|
|
|
|
|
* - src: https://www.sitepoint.com/extra-map-functions-sass/
|
|
|
|
|
* - About `map-merge()`:
|
|
|
|
|
* - - only takes 2 arguments
|
|
|
|
|
* - - is not recursive
|
|
|
|
|
* @param {Map} $map - first map
|
|
|
|
|
* @param {ArgList} $maps - other maps
|
|
|
|
|
* @param {Bool} $deep - recursive mode
|
|
|
|
|
* @return {Map}
|
|
|
|
|
*
|
|
|
|
|
* Examples:
|
|
|
|
|
|
|
|
|
|
$grid-configuration-default: (
|
|
|
|
|
'columns': 12,
|
|
|
|
|
'layouts': (
|
|
|
|
|
'small': 800px,
|
|
|
|
|
'medium': 1000px,
|
|
|
|
|
'large': 1200px,
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$grid-configuration-custom: (
|
|
|
|
|
'layouts': (
|
|
|
|
|
'large': 1300px,
|
|
|
|
|
'huge': 1500px
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$grid-configuration-user: (
|
|
|
|
|
'direction': 'ltr',
|
|
|
|
|
'columns': 16,
|
|
|
|
|
'layouts': (
|
|
|
|
|
'large': 1300px,
|
|
|
|
|
'huge': 1500px
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// $deep: false
|
|
|
|
|
$grid-configuration: map-extend($grid-configuration-default, $grid-configuration-custom, $grid-configuration-user);
|
|
|
|
|
// --> ("columns": 16, "layouts": (("large": 1300px, "huge": 1500px)), "direction": "ltr")
|
|
|
|
|
|
|
|
|
|
// $deep: true
|
|
|
|
|
$grid-configuration: map-extend($grid-configuration-default, $grid-configuration-custom, $grid-configuration-user, true);
|
|
|
|
|
// --> ("columns": 16, "layouts": (("small": 800px, "medium": 1000px, "large": 1300px, "huge": 1500px)), "direction": "ltr")
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Button
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Cover
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Heading
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* List
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Pullquote
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Quote
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Separator
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Responsive breakpoints
|
|
|
|
|
* - breakpoints values are defined in _config-global.scss
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Align wide widths
|
2019-09-03 16:59:17 +00:00
|
|
|
|
* - Sets .alignwide widths
|
2019-08-15 15:20:03 +00:00
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Crop Text Boundry
|
|
|
|
|
* - Sets a fixed-width on content within alignwide and alignfull blocks
|
|
|
|
|
*/
|
2019-10-18 10:32:35 +00:00
|
|
|
|
/**
|
|
|
|
|
* Add font-family using CSS variables.
|
|
|
|
|
* It also adds the proper fallback for browsers without support.
|
|
|
|
|
*/
|
2019-08-15 15:20:03 +00:00
|
|
|
|
/**
|
|
|
|
|
* Child Theme Deep
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Redefine Sass map values for child theme output.
|
|
|
|
|
* - See: style-child-theme.scss
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Global
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Elements
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Button
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Cover
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Heading
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* List
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Pullquote
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Quote
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Separator
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Header
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Footer
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Base
|
|
|
|
|
* - Reset the browser
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Base
|
|
|
|
|
* - Reset the browser
|
|
|
|
|
*/
|
2019-10-22 20:53:18 +00:00
|
|
|
|
/**
|
|
|
|
|
* Button Placeholder style
|
|
|
|
|
* - Since buttons appear in various blocks,
|
|
|
|
|
* let’s use a placeholder to keep them all
|
|
|
|
|
* in-sync
|
|
|
|
|
*/
|
2022-03-28 10:40:08 +00:00
|
|
|
|
button[data-load-more-btn],
|
|
|
|
|
.button, button,
|
2019-10-22 20:53:18 +00:00
|
|
|
|
input[type="submit"],
|
|
|
|
|
.wp-block-button__link,
|
2021-06-01 09:33:28 +00:00
|
|
|
|
.wp-block-file__button, .a8c-posts-list__view-all, .wp-block-search .wp-block-search__button, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
|
2019-10-22 20:53:18 +00:00
|
|
|
|
line-height: 1;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
|
|
|
|
|
font-family: var(--font-headings, "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif);
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
background-color: #0073AA;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
border-width: 0;
|
2020-04-14 22:51:10 +00:00
|
|
|
|
text-decoration: none;
|
2019-10-22 20:53:18 +00:00
|
|
|
|
padding: 16px 16px;
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-28 10:40:08 +00:00
|
|
|
|
button[data-load-more-btn]:before,
|
|
|
|
|
.button:before, button:before,
|
2019-10-22 20:53:18 +00:00
|
|
|
|
input[type="submit"]:before,
|
|
|
|
|
.wp-block-button__link:before,
|
2022-03-28 10:40:08 +00:00
|
|
|
|
.wp-block-file__button:before, .a8c-posts-list__view-all:before, .wp-block-search .wp-block-search__button:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before, button[data-load-more-btn]:after,
|
|
|
|
|
.button:after, button:after,
|
2019-10-22 20:53:18 +00:00
|
|
|
|
input[type="submit"]:after,
|
|
|
|
|
.wp-block-button__link:after,
|
2021-06-01 09:33:28 +00:00
|
|
|
|
.wp-block-file__button:after, .a8c-posts-list__view-all:after, .wp-block-search .wp-block-search__button:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
|
2019-10-22 20:53:18 +00:00
|
|
|
|
content: '';
|
|
|
|
|
display: block;
|
|
|
|
|
height: 0;
|
|
|
|
|
width: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-28 10:40:08 +00:00
|
|
|
|
button[data-load-more-btn]:before,
|
|
|
|
|
.button:before, button:before,
|
2019-10-22 20:53:18 +00:00
|
|
|
|
input[type="submit"]:before,
|
|
|
|
|
.wp-block-button__link:before,
|
2021-06-01 09:33:28 +00:00
|
|
|
|
.wp-block-file__button:before, .a8c-posts-list__view-all:before, .wp-block-search .wp-block-search__button:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before {
|
2019-10-22 20:53:18 +00:00
|
|
|
|
margin-bottom: -0.12em;
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-28 10:40:08 +00:00
|
|
|
|
button[data-load-more-btn]:after,
|
|
|
|
|
.button:after, button:after,
|
2019-10-22 20:53:18 +00:00
|
|
|
|
input[type="submit"]:after,
|
|
|
|
|
.wp-block-button__link:after,
|
2021-06-01 09:33:28 +00:00
|
|
|
|
.wp-block-file__button:after, .a8c-posts-list__view-all:after, .wp-block-search .wp-block-search__button:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
|
2019-10-22 20:53:18 +00:00
|
|
|
|
margin-top: -0.11em;
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-28 10:40:08 +00:00
|
|
|
|
|
2021-02-04 17:25:13 +00:00
|
|
|
|
.button:not(.has-background):hover, button:not(.has-background):hover,
|
|
|
|
|
input:not(.has-background):hover[type="submit"],
|
|
|
|
|
.wp-block-button__link:not(.has-background):hover,
|
2022-03-28 10:40:08 +00:00
|
|
|
|
.wp-block-file__button:not(.has-background):hover, .a8c-posts-list__view-all:not(.has-background):hover, .wp-block-search .wp-block-search__button:not(.has-background):hover, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:not(.has-background):hover,
|
|
|
|
|
.button:focus, button:focus,
|
2019-10-22 20:53:18 +00:00
|
|
|
|
input:focus[type="submit"],
|
|
|
|
|
.wp-block-button__link:focus,
|
2022-03-28 10:40:08 +00:00
|
|
|
|
.wp-block-file__button:focus, .a8c-posts-list__view-all:focus, .wp-block-search .wp-block-search__button:focus, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:focus,
|
|
|
|
|
.has-focus.button, button.has-focus,
|
2019-10-22 20:53:18 +00:00
|
|
|
|
input.has-focus[type="submit"],
|
|
|
|
|
.has-focus.wp-block-button__link,
|
2021-06-01 09:33:28 +00:00
|
|
|
|
.has-focus.wp-block-file__button, .has-focus.a8c-posts-list__view-all, .wp-block-search .has-focus.wp-block-search__button, body .widget_eu_cookie_law_widget #eu-cookie-law input.has-focus.accept {
|
2019-10-22 20:53:18 +00:00
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
background-color: #005177;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Onsale Placeholder style
|
|
|
|
|
* - Since buttons appear in various blocks,
|
|
|
|
|
* let’s use a placeholder to keep them all
|
|
|
|
|
* in-sync
|
|
|
|
|
*/
|
2019-08-15 15:20:03 +00:00
|
|
|
|
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
|
|
|
|
|
/* Document
|
|
|
|
|
========================================================================== */
|
|
|
|
|
/**
|
|
|
|
|
* 1. Correct the line height in all browsers.
|
|
|
|
|
* 2. Prevent adjustments of font size after orientation changes in iOS.
|
|
|
|
|
*/
|
|
|
|
|
html {
|
|
|
|
|
line-height: 1.15;
|
|
|
|
|
/* 1 */
|
|
|
|
|
-webkit-text-size-adjust: 100%;
|
|
|
|
|
/* 2 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Sections
|
|
|
|
|
========================================================================== */
|
|
|
|
|
/**
|
|
|
|
|
* Remove the margin in all browsers.
|
|
|
|
|
*/
|
|
|
|
|
body {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Render the `main` element consistently in IE.
|
|
|
|
|
*/
|
|
|
|
|
main {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Correct the font size and margin on `h1` elements within `section` and
|
|
|
|
|
* `article` contexts in Chrome, Firefox, and Safari.
|
|
|
|
|
*/
|
|
|
|
|
h1 {
|
|
|
|
|
font-size: 2em;
|
|
|
|
|
margin: 0.67em 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Grouping content
|
|
|
|
|
========================================================================== */
|
|
|
|
|
/**
|
|
|
|
|
* 1. Add the correct box sizing in Firefox.
|
|
|
|
|
* 2. Show the overflow in Edge and IE.
|
|
|
|
|
*/
|
|
|
|
|
hr {
|
|
|
|
|
box-sizing: content-box;
|
|
|
|
|
/* 1 */
|
|
|
|
|
height: 0;
|
|
|
|
|
/* 1 */
|
|
|
|
|
overflow: visible;
|
|
|
|
|
/* 2 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 1. Correct the inheritance and scaling of font size in all browsers.
|
|
|
|
|
* 2. Correct the odd `em` font sizing in all browsers.
|
|
|
|
|
*/
|
|
|
|
|
pre {
|
|
|
|
|
font-family: monospace, monospace;
|
|
|
|
|
/* 1 */
|
|
|
|
|
font-size: 1em;
|
|
|
|
|
/* 2 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Text-level semantics
|
|
|
|
|
========================================================================== */
|
|
|
|
|
/**
|
|
|
|
|
* Remove the gray background on active links in IE 10.
|
|
|
|
|
*/
|
|
|
|
|
a {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 1. Remove the bottom border in Chrome 57-
|
|
|
|
|
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
|
|
|
|
*/
|
|
|
|
|
abbr[title] {
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
/* 1 */
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
/* 2 */
|
|
|
|
|
text-decoration: underline dotted;
|
|
|
|
|
/* 2 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add the correct font weight in Chrome, Edge, and Safari.
|
|
|
|
|
*/
|
|
|
|
|
b,
|
|
|
|
|
strong {
|
|
|
|
|
font-weight: bolder;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 1. Correct the inheritance and scaling of font size in all browsers.
|
|
|
|
|
* 2. Correct the odd `em` font sizing in all browsers.
|
|
|
|
|
*/
|
|
|
|
|
code,
|
|
|
|
|
kbd,
|
|
|
|
|
samp {
|
|
|
|
|
font-family: monospace, monospace;
|
|
|
|
|
/* 1 */
|
|
|
|
|
font-size: 1em;
|
|
|
|
|
/* 2 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add the correct font size in all browsers.
|
|
|
|
|
*/
|
|
|
|
|
small {
|
|
|
|
|
font-size: 80%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Prevent `sub` and `sup` elements from affecting the line height in
|
|
|
|
|
* all browsers.
|
|
|
|
|
*/
|
|
|
|
|
sub,
|
|
|
|
|
sup {
|
|
|
|
|
font-size: 75%;
|
|
|
|
|
line-height: 0;
|
|
|
|
|
position: relative;
|
|
|
|
|
vertical-align: baseline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sub {
|
|
|
|
|
bottom: -0.25em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sup {
|
|
|
|
|
top: -0.5em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Forms
|
|
|
|
|
========================================================================== */
|
|
|
|
|
/**
|
|
|
|
|
* 1. Change the font styles in all browsers.
|
|
|
|
|
* 2. Remove the margin in Firefox and Safari.
|
|
|
|
|
*/
|
|
|
|
|
button,
|
|
|
|
|
input,
|
|
|
|
|
optgroup,
|
|
|
|
|
select,
|
|
|
|
|
textarea {
|
|
|
|
|
font-family: inherit;
|
|
|
|
|
/* 1 */
|
|
|
|
|
font-size: 100%;
|
|
|
|
|
/* 1 */
|
|
|
|
|
line-height: 1.15;
|
|
|
|
|
/* 1 */
|
|
|
|
|
margin: 0;
|
|
|
|
|
/* 2 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Show the overflow in IE.
|
|
|
|
|
* 1. Show the overflow in Edge.
|
|
|
|
|
*/
|
|
|
|
|
button,
|
|
|
|
|
input {
|
|
|
|
|
/* 1 */
|
|
|
|
|
overflow: visible;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Remove the inheritance of text transform in Edge, Firefox, and IE.
|
|
|
|
|
* 1. Remove the inheritance of text transform in Firefox.
|
|
|
|
|
*/
|
|
|
|
|
button,
|
|
|
|
|
select {
|
|
|
|
|
/* 1 */
|
|
|
|
|
text-transform: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Correct the inability to style clickable types in iOS and Safari.
|
|
|
|
|
*/
|
|
|
|
|
button,
|
|
|
|
|
[type="button"],
|
|
|
|
|
[type="reset"],
|
|
|
|
|
[type="submit"] {
|
|
|
|
|
-webkit-appearance: button;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Remove the inner border and padding in Firefox.
|
|
|
|
|
*/
|
|
|
|
|
button::-moz-focus-inner,
|
|
|
|
|
[type="button"]::-moz-focus-inner,
|
|
|
|
|
[type="reset"]::-moz-focus-inner,
|
|
|
|
|
[type="submit"]::-moz-focus-inner {
|
|
|
|
|
border-style: none;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Restore the focus styles unset by the previous rule.
|
|
|
|
|
*/
|
|
|
|
|
button:-moz-focusring,
|
|
|
|
|
[type="button"]:-moz-focusring,
|
|
|
|
|
[type="reset"]:-moz-focusring,
|
|
|
|
|
[type="submit"]:-moz-focusring {
|
|
|
|
|
outline: 1px dotted ButtonText;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Correct the padding in Firefox.
|
|
|
|
|
*/
|
|
|
|
|
fieldset {
|
|
|
|
|
padding: 0.35em 0.75em 0.625em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 1. Correct the text wrapping in Edge and IE.
|
|
|
|
|
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
|
|
|
|
* 3. Remove the padding so developers are not caught out when they zero out
|
|
|
|
|
* `fieldset` elements in all browsers.
|
|
|
|
|
*/
|
|
|
|
|
legend {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
/* 1 */
|
|
|
|
|
color: inherit;
|
|
|
|
|
/* 2 */
|
|
|
|
|
display: table;
|
|
|
|
|
/* 1 */
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
/* 1 */
|
|
|
|
|
padding: 0;
|
|
|
|
|
/* 3 */
|
|
|
|
|
white-space: normal;
|
|
|
|
|
/* 1 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
|
|
|
|
*/
|
|
|
|
|
progress {
|
|
|
|
|
vertical-align: baseline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Remove the default vertical scrollbar in IE 10+.
|
|
|
|
|
*/
|
|
|
|
|
textarea {
|
|
|
|
|
overflow: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 1. Add the correct box sizing in IE 10.
|
|
|
|
|
* 2. Remove the padding in IE 10.
|
|
|
|
|
*/
|
|
|
|
|
[type="checkbox"],
|
|
|
|
|
[type="radio"] {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
/* 1 */
|
|
|
|
|
padding: 0;
|
|
|
|
|
/* 2 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Correct the cursor style of increment and decrement buttons in Chrome.
|
|
|
|
|
*/
|
|
|
|
|
[type="number"]::-webkit-inner-spin-button,
|
|
|
|
|
[type="number"]::-webkit-outer-spin-button {
|
|
|
|
|
height: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 1. Correct the odd appearance in Chrome and Safari.
|
|
|
|
|
* 2. Correct the outline style in Safari.
|
|
|
|
|
*/
|
|
|
|
|
[type="search"] {
|
|
|
|
|
-webkit-appearance: textfield;
|
|
|
|
|
/* 1 */
|
|
|
|
|
outline-offset: -2px;
|
|
|
|
|
/* 2 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Remove the inner padding in Chrome and Safari on macOS.
|
|
|
|
|
*/
|
|
|
|
|
[type="search"]::-webkit-search-decoration {
|
|
|
|
|
-webkit-appearance: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 1. Correct the inability to style clickable types in iOS and Safari.
|
|
|
|
|
* 2. Change font properties to `inherit` in Safari.
|
|
|
|
|
*/
|
|
|
|
|
::-webkit-file-upload-button {
|
|
|
|
|
-webkit-appearance: button;
|
|
|
|
|
/* 1 */
|
|
|
|
|
font: inherit;
|
|
|
|
|
/* 2 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Interactive
|
|
|
|
|
========================================================================== */
|
|
|
|
|
/*
|
|
|
|
|
* Add the correct display in Edge, IE 10+, and Firefox.
|
|
|
|
|
*/
|
|
|
|
|
details {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Add the correct display in all browsers.
|
|
|
|
|
*/
|
|
|
|
|
summary {
|
|
|
|
|
display: list-item;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Misc
|
|
|
|
|
========================================================================== */
|
|
|
|
|
/**
|
|
|
|
|
* Add the correct display in IE 10+.
|
|
|
|
|
*/
|
|
|
|
|
template {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add the correct display in IE 10.
|
|
|
|
|
*/
|
|
|
|
|
[hidden] {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Reset specific elements to make them easier to style in other contexts.
|
|
|
|
|
*/
|
|
|
|
|
html,
|
|
|
|
|
body,
|
|
|
|
|
p,
|
|
|
|
|
ol,
|
|
|
|
|
ul,
|
|
|
|
|
li,
|
|
|
|
|
dl,
|
|
|
|
|
dt,
|
|
|
|
|
dd,
|
|
|
|
|
blockquote,
|
|
|
|
|
figure,
|
|
|
|
|
fieldset,
|
|
|
|
|
form,
|
|
|
|
|
legend,
|
|
|
|
|
textarea,
|
|
|
|
|
pre,
|
|
|
|
|
iframe,
|
|
|
|
|
hr,
|
|
|
|
|
h1,
|
|
|
|
|
h2,
|
|
|
|
|
h3,
|
|
|
|
|
h4,
|
|
|
|
|
h5,
|
|
|
|
|
h6 {
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Apply generic border-box to all elements.
|
|
|
|
|
* See:
|
|
|
|
|
* https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Apply border-box across the entire page.
|
|
|
|
|
*/
|
|
|
|
|
html {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Relax the definition a bit, to allow components to override it manually.
|
|
|
|
|
*/
|
|
|
|
|
*, *::before, *::after {
|
|
|
|
|
box-sizing: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* HTML resets
|
|
|
|
|
*/
|
|
|
|
|
html {
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 16.52174px;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
|
2019-10-15 08:19:59 +00:00
|
|
|
|
font-family: var(--font-base, "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif);
|
2019-08-15 15:36:12 +00:00
|
|
|
|
line-height: 1.6;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
html {
|
2019-09-20 16:46:23 +00:00
|
|
|
|
font-size: 19px;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
font-weight: normal;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #1e1e1e;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
text-align: left;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
background-color: #FFFFFF;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Links styles
|
|
|
|
|
*/
|
|
|
|
|
a {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #0073AA;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:hover {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #005177;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-02-23 17:16:23 +00:00
|
|
|
|
.has-primary-background-color a:not(.has-text-color) {
|
2021-02-23 12:17:48 +00:00
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:20:03 +00:00
|
|
|
|
button,
|
|
|
|
|
a {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Text meant only for screen readers. */
|
|
|
|
|
.screen-reader-text {
|
|
|
|
|
border: 0;
|
|
|
|
|
clip: rect(1px, 1px, 1px, 1px);
|
|
|
|
|
clip-path: inset(50%);
|
|
|
|
|
height: 1px;
|
|
|
|
|
margin: -1px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
padding: 0;
|
|
|
|
|
position: absolute !important;
|
|
|
|
|
width: 1px;
|
|
|
|
|
word-wrap: normal !important;
|
|
|
|
|
/* Many screen reader and browser combinations announce broken words as they would appear visually. */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.screen-reader-text:focus {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
background-color: #FFFFFF;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
border-radius: 3px;
|
|
|
|
|
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
|
|
|
|
|
clip: auto !important;
|
|
|
|
|
clip-path: none;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #1e1e1e;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
display: block;
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 1.15rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
font-weight: bold;
|
|
|
|
|
height: auto;
|
|
|
|
|
left: 5px;
|
|
|
|
|
line-height: normal;
|
|
|
|
|
padding: 15px 23px 14px;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
top: 5px;
|
|
|
|
|
width: auto;
|
|
|
|
|
z-index: 100000;
|
|
|
|
|
/* Above WP toolbar. */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Do not show the outline on the skip link target. */
|
|
|
|
|
#content[tabindex="-1"]:focus {
|
|
|
|
|
outline: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.clear:before,
|
|
|
|
|
.clear:after,
|
|
|
|
|
.entry-content:before,
|
|
|
|
|
.entry-content:after,
|
|
|
|
|
.comment-content:before,
|
|
|
|
|
.comment-content:after,
|
|
|
|
|
.site-header:before,
|
|
|
|
|
.site-header:after,
|
|
|
|
|
.site-content:before,
|
|
|
|
|
.site-content:after,
|
|
|
|
|
.site-footer:before,
|
|
|
|
|
.site-footer:after {
|
|
|
|
|
content: "";
|
|
|
|
|
display: table;
|
|
|
|
|
table-layout: fixed;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.clear:after,
|
|
|
|
|
.entry-content:after,
|
|
|
|
|
.comment-content:after,
|
|
|
|
|
.site-header:after,
|
|
|
|
|
.site-content:after,
|
|
|
|
|
.site-footer:after {
|
2019-10-23 14:44:01 +00:00
|
|
|
|
clear: both;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Measure
|
|
|
|
|
* - The width of a line of text, in characters, is known as its measure.
|
|
|
|
|
*/
|
|
|
|
|
header *,
|
|
|
|
|
main *,
|
|
|
|
|
footer * {
|
2019-10-25 11:55:09 +00:00
|
|
|
|
max-width: unset;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html,
|
|
|
|
|
body,
|
|
|
|
|
div,
|
|
|
|
|
header,
|
|
|
|
|
nav,
|
|
|
|
|
article,
|
|
|
|
|
figure,
|
|
|
|
|
hr,
|
|
|
|
|
main,
|
|
|
|
|
section,
|
|
|
|
|
footer {
|
|
|
|
|
max-width: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::selection {
|
2019-08-15 16:03:15 +00:00
|
|
|
|
background-color: #c4ecff;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-moz-selection {
|
2019-08-15 16:03:15 +00:00
|
|
|
|
background-color: #c4ecff;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Layout
|
|
|
|
|
* - Structral and responsive styles
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Layout
|
|
|
|
|
* - Structral and responsive styles
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Site Structure
|
|
|
|
|
*
|
|
|
|
|
* - Set vertical margins and responsive widths on
|
|
|
|
|
* top-level wrappers and content wrappers
|
|
|
|
|
* - `--global--width-content` is a responsive veriable
|
|
|
|
|
* - See: globals/_global-width-responsive.scss
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Top Level Wrappers (header, main, footer)
|
|
|
|
|
* - Set vertical padding and horizontal margins
|
|
|
|
|
*/
|
|
|
|
|
.site-header,
|
|
|
|
|
.site-main,
|
|
|
|
|
.site-footer {
|
|
|
|
|
padding: 16px 16px;
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.site-header,
|
|
|
|
|
.site-main,
|
|
|
|
|
.site-footer {
|
|
|
|
|
padding-top: 32px;
|
|
|
|
|
padding-right: 0;
|
|
|
|
|
padding-bottom: 32px;
|
|
|
|
|
padding-left: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Site-main children wrappers
|
|
|
|
|
* - Add double vertical margins here for clearer heirarchy
|
|
|
|
|
*/
|
|
|
|
|
.site-main > * {
|
|
|
|
|
margin-top: calc(3 * 32px);
|
|
|
|
|
margin-bottom: calc(3 * 32px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-main > *:first-child {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-main > *:last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Major content sections (article, author-bio, pagination, comments, etc.)
|
|
|
|
|
* - Set a maximum responsive content-width
|
|
|
|
|
*
|
|
|
|
|
* .responsive-max-width is a group selector replacing the following:
|
|
|
|
|
* .site-header,
|
|
|
|
|
* .site-main,
|
|
|
|
|
* .site-footer
|
|
|
|
|
* .entry-header,
|
|
|
|
|
* .post-thumbnail,
|
|
|
|
|
* .entry-content,
|
|
|
|
|
* .entry-footer,
|
|
|
|
|
* .author-bio,
|
|
|
|
|
* .widget-area
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
* Block & non-gutenberg content wrappers
|
|
|
|
|
* - Set margins
|
|
|
|
|
*/
|
|
|
|
|
.entry-header,
|
|
|
|
|
.post-thumbnail,
|
|
|
|
|
.entry-content,
|
|
|
|
|
.entry-footer,
|
|
|
|
|
.author-bio,
|
|
|
|
|
.widget-area {
|
|
|
|
|
margin-top: 32px;
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Block & non-gutenberg content wrapper children
|
|
|
|
|
* - Sets spacing-vertical margin logic
|
|
|
|
|
*/
|
|
|
|
|
.site-footer > *,
|
|
|
|
|
.site-main > article > *,
|
2019-09-03 16:59:17 +00:00
|
|
|
|
.site-main > .not-found > *,
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.entry-content > *,
|
2020-10-22 18:29:09 +00:00
|
|
|
|
.entry-content-child,
|
|
|
|
|
.wp-block-premium-content-container .wp-premium-content-logged-out-view > *,
|
|
|
|
|
.wp-block-premium-content-container .wp-block-premium-content-subscriber-view > *,
|
2019-09-03 16:59:17 +00:00
|
|
|
|
[class*="inner-container"] > *,
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.widget-area > * {
|
|
|
|
|
margin-top: 21.312px;
|
|
|
|
|
margin-bottom: 21.312px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.site-footer > *,
|
|
|
|
|
.site-main > article > *,
|
2019-09-03 16:59:17 +00:00
|
|
|
|
.site-main > .not-found > *,
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.entry-content > *,
|
2020-10-22 18:29:09 +00:00
|
|
|
|
.entry-content-child,
|
|
|
|
|
.wp-block-premium-content-container .wp-premium-content-logged-out-view > *,
|
|
|
|
|
.wp-block-premium-content-container .wp-block-premium-content-subscriber-view > *,
|
2019-09-03 16:59:17 +00:00
|
|
|
|
[class*="inner-container"] > *,
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.widget-area > * {
|
|
|
|
|
margin-top: 32px;
|
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-footer > *:first-child,
|
|
|
|
|
.site-main > article > *:first-child,
|
2019-09-03 16:59:17 +00:00
|
|
|
|
.site-main > .not-found > *:first-child,
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.entry-content > *:first-child,
|
2020-10-22 18:29:09 +00:00
|
|
|
|
.entry-content-child:first-child,
|
|
|
|
|
.wp-block-premium-content-container .wp-premium-content-logged-out-view > :first-child,
|
|
|
|
|
.wp-block-premium-content-container .wp-block-premium-content-subscriber-view > :first-child,
|
2019-09-03 16:59:17 +00:00
|
|
|
|
[class*="inner-container"] > *:first-child,
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.widget-area > *:first-child {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-footer > *:last-child,
|
|
|
|
|
.site-main > article > *:last-child,
|
2019-09-03 16:59:17 +00:00
|
|
|
|
.site-main > .not-found > *:last-child,
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.entry-content > *:last-child,
|
2020-10-22 18:29:09 +00:00
|
|
|
|
.entry-content-child:last-child,
|
|
|
|
|
.wp-block-premium-content-container .wp-premium-content-logged-out-view > :last-child,
|
|
|
|
|
.wp-block-premium-content-container .wp-block-premium-content-subscriber-view > :last-child,
|
2019-09-03 16:59:17 +00:00
|
|
|
|
[class*="inner-container"] > *:last-child,
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.widget-area > *:last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Block & non-gutenberg content wrapper children
|
|
|
|
|
* - Sets spacing-unit margins
|
|
|
|
|
*/
|
|
|
|
|
.site-header > *,
|
|
|
|
|
.entry-header > *,
|
|
|
|
|
.post-thumbnail > *,
|
2019-09-03 16:59:17 +00:00
|
|
|
|
.page-content > *,
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.comment-content > *,
|
2019-10-22 20:53:18 +00:00
|
|
|
|
.author-bio > *,
|
|
|
|
|
.widget-area > .widget > * {
|
2019-08-15 15:20:03 +00:00
|
|
|
|
margin-top: 16px;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-header > *:first-child,
|
|
|
|
|
.entry-header > *:first-child,
|
|
|
|
|
.post-thumbnail > *:first-child,
|
2019-09-03 16:59:17 +00:00
|
|
|
|
.page-content > *:first-child,
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.comment-content > *:first-child,
|
2019-10-22 20:53:18 +00:00
|
|
|
|
.author-bio > *:first-child,
|
|
|
|
|
.widget-area > .widget > *:first-child {
|
2019-08-15 15:20:03 +00:00
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-header > *:last-child,
|
|
|
|
|
.entry-header > *:last-child,
|
|
|
|
|
.post-thumbnail > *:last-child,
|
2019-09-03 16:59:17 +00:00
|
|
|
|
.page-content > *:last-child,
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.comment-content > *:last-child,
|
2019-10-22 20:53:18 +00:00
|
|
|
|
.author-bio > *:last-child,
|
|
|
|
|
.widget-area > .widget > *:last-child {
|
2019-08-15 15:20:03 +00:00
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* .entry-content children specific controls
|
|
|
|
|
* - Adds special margin overrides for alignment utility classes
|
|
|
|
|
*/
|
|
|
|
|
.entry-content > * {
|
|
|
|
|
/* Reset alignleft and alignright margins after alignfull */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.entry-content > *.alignleft, .entry-content > *.alignright,
|
|
|
|
|
.entry-content > *.alignleft:first-child + *,
|
|
|
|
|
.entry-content > *.alignright:first-child + *, .entry-content > *.alignfull {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.entry-content > *:last-child, .entry-content > *.alignfull {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-30 18:25:34 +00:00
|
|
|
|
.entry-content > *.alignfull + .alignleft {
|
|
|
|
|
float: left;
|
|
|
|
|
margin-top: 32px;
|
|
|
|
|
margin-left: 16px;
|
|
|
|
|
margin-right: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.entry-content > *.alignfull + .alignright {
|
2020-06-30 18:25:34 +00:00
|
|
|
|
float: right;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
margin-top: 32px;
|
2020-06-30 18:25:34 +00:00
|
|
|
|
margin-left: 16px;
|
|
|
|
|
margin-right: 16px;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Elements
|
|
|
|
|
* - Styles for basic HTML elemants
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Elements
|
|
|
|
|
* - Styles for basic HTML elemants
|
|
|
|
|
*/
|
|
|
|
|
blockquote {
|
|
|
|
|
padding-left: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
blockquote p {
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 1.52087rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
letter-spacing: normal;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
line-height: 1.2;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
blockquote cite,
|
|
|
|
|
blockquote footer {
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 0.86957rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
letter-spacing: normal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
blockquote > * {
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
blockquote > *:first-child {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
blockquote > *:last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
blockquote.alignleft, blockquote.alignright {
|
|
|
|
|
padding-left: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
blockquote.alignleft p, blockquote.alignright p {
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 1.3225rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
max-width: inherit;
|
|
|
|
|
width: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
blockquote.alignleft cite,
|
|
|
|
|
blockquote.alignleft footer, blockquote.alignright cite,
|
|
|
|
|
blockquote.alignright footer {
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 0.75614rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
letter-spacing: normal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input[type="text"],
|
|
|
|
|
input[type="email"],
|
|
|
|
|
input[type="url"],
|
|
|
|
|
input[type="password"],
|
|
|
|
|
input[type="search"],
|
|
|
|
|
input[type="number"],
|
|
|
|
|
input[type="tel"],
|
|
|
|
|
input[type="range"],
|
|
|
|
|
input[type="date"],
|
|
|
|
|
input[type="month"],
|
|
|
|
|
input[type="week"],
|
|
|
|
|
input[type="time"],
|
|
|
|
|
input[type="datetime"],
|
|
|
|
|
input[type="datetime-local"],
|
|
|
|
|
input[type="color"],
|
|
|
|
|
textarea {
|
2020-07-08 18:21:28 +00:00
|
|
|
|
color: black;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
border: 1px solid #CCCCCC;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
border-radius: 3px;
|
|
|
|
|
padding: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input[type="text"]:focus,
|
|
|
|
|
input[type="email"]:focus,
|
|
|
|
|
input[type="url"]:focus,
|
|
|
|
|
input[type="password"]:focus,
|
|
|
|
|
input[type="search"]:focus,
|
|
|
|
|
input[type="number"]:focus,
|
|
|
|
|
input[type="tel"]:focus,
|
|
|
|
|
input[type="range"]:focus,
|
|
|
|
|
input[type="date"]:focus,
|
|
|
|
|
input[type="month"]:focus,
|
|
|
|
|
input[type="week"]:focus,
|
|
|
|
|
input[type="time"]:focus,
|
|
|
|
|
input[type="datetime"]:focus,
|
|
|
|
|
input[type="datetime-local"]:focus,
|
|
|
|
|
input[type="color"]:focus,
|
|
|
|
|
textarea:focus {
|
2020-07-08 18:21:28 +00:00
|
|
|
|
color: black;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
border-color: #005177;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
select {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
border: 1px solid #CCCCCC;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
textarea {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input[type=checkbox] + label {
|
|
|
|
|
display: inline;
|
|
|
|
|
margin-left: 0.5em;
|
|
|
|
|
margin-right: 2em;
|
|
|
|
|
line-height: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
figcaption {
|
|
|
|
|
color: #767676;
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 0.75614rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
margin-top: calc(0.5 * 16px);
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.alignleft figcaption,
|
|
|
|
|
.alignright figcaption {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* WP Smiley */
|
|
|
|
|
.page-content .wp-smiley,
|
|
|
|
|
.entry-content .wp-smiley,
|
|
|
|
|
.comment-content .wp-smiley {
|
|
|
|
|
border: none;
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Make sure embeds and iframes fit their containers. */
|
|
|
|
|
embed,
|
|
|
|
|
iframe,
|
|
|
|
|
object {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-26 13:11:48 +00:00
|
|
|
|
/* Center-align getty image embeds */
|
|
|
|
|
.getty.embed.image {
|
|
|
|
|
display: block !important;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:20:03 +00:00
|
|
|
|
/**
|
|
|
|
|
* Blocks
|
|
|
|
|
* - These styles replace key Gutenberg Block styles for fonts, colors, and
|
|
|
|
|
* spacing with CSS-variables overrides
|
|
|
|
|
* - In the future the Block styles may get compiled to individual .css
|
|
|
|
|
* files and conditionally loaded
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Blocks
|
|
|
|
|
* - These styles replace key Gutenberg Block styles with font, color, and
|
|
|
|
|
* spacing with CSS-variables overrides
|
|
|
|
|
* - In the future the Block styles may get compiled to individual .css
|
|
|
|
|
* files and conditionally loaded
|
|
|
|
|
*/
|
|
|
|
|
.wp-block-audio {
|
|
|
|
|
min-width: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-audio.alignleft, .wp-block-audio.alignright {
|
|
|
|
|
min-width: 300px;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-19 16:50:28 +00:00
|
|
|
|
.wp-block-newspack-blocks-homepage-articles.image-aligntop .post-thumbnail {
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles.image-alignleft .post-thumbnail {
|
|
|
|
|
margin-right: 32px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles.image-alignright .post-thumbnail {
|
|
|
|
|
margin-left: 32px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles.image-alignbehind .post-has-image .entry-wrapper {
|
|
|
|
|
padding: 32px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles.is-grid article {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
margin-bottom: 64px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles.is-grid article {
|
|
|
|
|
margin-bottom: 96px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles .article-section-title {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles .article-section-title + article {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-16 21:06:05 +00:00
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article {
|
|
|
|
|
display: block;
|
|
|
|
|
/* Vertical margins logic between posts */
|
2019-12-19 16:50:28 +00:00
|
|
|
|
margin-top: 64px;
|
|
|
|
|
margin-bottom: 64px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article {
|
|
|
|
|
margin-top: 96px;
|
|
|
|
|
margin-bottom: 96px;
|
|
|
|
|
}
|
2019-12-16 21:06:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article:first-child {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article:last-child {
|
2019-12-19 16:50:28 +00:00
|
|
|
|
margin-bottom: 96px;
|
2019-12-16 21:06:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .post-thumbnail img {
|
|
|
|
|
width: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .entry-wrapper > * {
|
|
|
|
|
/* Vertical margins logic between post details */
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .entry-wrapper > *:first-child {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .entry-wrapper > *:last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-19 16:50:28 +00:00
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .entry-title a {
|
|
|
|
|
color: #0073AA;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a,
|
|
|
|
|
[class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a,
|
|
|
|
|
[style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-title a {
|
|
|
|
|
color: currentColor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .entry-title a:hover {
|
|
|
|
|
color: #005177;
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,
|
|
|
|
|
[class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,
|
|
|
|
|
[style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover {
|
|
|
|
|
color: currentColor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .more-link {
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
}
|
2019-12-16 21:06:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .entry-meta,
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .cat-links {
|
|
|
|
|
color: #767676;
|
|
|
|
|
font-size: 0.86957rem;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-18 17:49:53 +00:00
|
|
|
|
.has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta,
|
|
|
|
|
[class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta,
|
|
|
|
|
[style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-meta, .has-background:not(.has-background-background-color)
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .cat-links,
|
|
|
|
|
[class*="background-color"]:not(.has-background-background-color)
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .cat-links,
|
|
|
|
|
[style*="background-color"]
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .cat-links {
|
|
|
|
|
color: currentColor;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-19 16:50:28 +00:00
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .entry-meta > span > *,
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .cat-links > span > * {
|
|
|
|
|
vertical-align: top;
|
2019-12-16 21:06:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-19 16:50:28 +00:00
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .entry-meta .byline:not(:last-child),
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .cat-links .byline:not(:last-child) {
|
|
|
|
|
margin-right: 16px;
|
2019-12-16 21:06:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-18 20:30:51 +00:00
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .entry-meta .published + .updated,
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .cat-links .published + .updated {
|
2019-12-16 21:06:05 +00:00
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .entry-meta a,
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .cat-links a {
|
|
|
|
|
color: currentColor;
|
2019-12-19 16:50:28 +00:00
|
|
|
|
text-decoration: underline;
|
2019-12-16 21:06:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover, .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active,
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .cat-links a:active {
|
|
|
|
|
color: #005177;
|
2019-12-19 16:50:28 +00:00
|
|
|
|
text-decoration: none;
|
2019-12-16 21:06:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-19 16:50:28 +00:00
|
|
|
|
.has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover,
|
|
|
|
|
[class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover,
|
|
|
|
|
[style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover, .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active,
|
|
|
|
|
[class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active,
|
|
|
|
|
[style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active, .has-background:not(.has-background-background-color)
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,
|
|
|
|
|
[class*="background-color"]:not(.has-background-background-color)
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,
|
|
|
|
|
[style*="background-color"]
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .cat-links a:hover, .has-background:not(.has-background-background-color)
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .cat-links a:active,
|
|
|
|
|
[class*="background-color"]:not(.has-background-background-color)
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .cat-links a:active,
|
|
|
|
|
[style*="background-color"]
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .cat-links a:active {
|
|
|
|
|
color: currentColor;
|
2019-12-16 21:06:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-03-28 10:40:08 +00:00
|
|
|
|
button[data-load-more-btn],
|
|
|
|
|
.button {
|
2019-12-16 21:06:05 +00:00
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-18 17:49:53 +00:00
|
|
|
|
.has-background:not(.has-background-background-color) button[data-load-more-btn],
|
|
|
|
|
[class*="background-color"]:not(.has-background-background-color) button[data-load-more-btn],
|
2022-03-28 10:40:08 +00:00
|
|
|
|
[style*="background-color"] button[data-load-more-btn], .has-background:not(.has-background-background-color)
|
|
|
|
|
.button,
|
|
|
|
|
[class*="background-color"]:not(.has-background-background-color)
|
|
|
|
|
.button,
|
|
|
|
|
[style*="background-color"]
|
|
|
|
|
.button {
|
2019-12-18 17:49:53 +00:00
|
|
|
|
background-color: transparent;
|
|
|
|
|
border: 2px solid currentColor;
|
|
|
|
|
color: currentColor;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:20:03 +00:00
|
|
|
|
/**
|
2019-10-22 20:53:18 +00:00
|
|
|
|
* Button
|
2019-08-15 15:20:03 +00:00
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Block Options
|
|
|
|
|
*/
|
2020-04-17 21:24:46 +00:00
|
|
|
|
.wp-block-button.is-style-outline.wp-block-button__link,
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.wp-block-button.is-style-outline .wp-block-button__link {
|
|
|
|
|
border: 2px solid currentcolor;
|
|
|
|
|
padding: 14px 16px;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-04 17:25:13 +00:00
|
|
|
|
.wp-block-button.is-style-outline.wp-block-button__link:not(.has-background),
|
|
|
|
|
.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background) {
|
2020-06-22 18:02:30 +00:00
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-button.is-style-outline.wp-block-button__link:not(.has-text-color),
|
|
|
|
|
.wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color) {
|
|
|
|
|
color: #0073AA;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-17 21:24:46 +00:00
|
|
|
|
.wp-block-button.is-style-outline.wp-block-button__link:active,
|
2020-04-14 22:51:10 +00:00
|
|
|
|
.wp-block-button.is-style-outline .wp-block-button__link:active {
|
2021-02-25 09:40:17 +00:00
|
|
|
|
color: #0073AA;
|
2020-04-14 22:51:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-17 21:24:46 +00:00
|
|
|
|
.wp-block-button.is-style-outline.wp-block-button__link:hover, .wp-block-button.is-style-outline.wp-block-button__link:focus, .wp-block-button.is-style-outline.wp-block-button__link.has-focus,
|
2020-04-17 20:02:53 +00:00
|
|
|
|
.wp-block-button.is-style-outline .wp-block-button__link:hover,
|
|
|
|
|
.wp-block-button.is-style-outline .wp-block-button__link:focus,
|
|
|
|
|
.wp-block-button.is-style-outline .wp-block-button__link.has-focus {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #005177;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-02-23 12:17:48 +00:00
|
|
|
|
.has-primary-background-color .wp-block-button.is-style-outline.wp-block-button__link:not(.has-text-color), .has-primary-background-color
|
|
|
|
|
.wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color) {
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-17 20:02:53 +00:00
|
|
|
|
.wp-block-button.is-style-squared,
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.wp-block-button.is-style-squared .wp-block-button__link {
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-code {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #1e1e1e;
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 0.86957rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
padding: 16px;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
border-color: #CCCCCC;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-code pre {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #1e1e1e;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-columns {
|
|
|
|
|
/**
|
|
|
|
|
* Block Options
|
|
|
|
|
*/
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-columns .wp-block-column > * {
|
|
|
|
|
margin-top: 21.312px;
|
|
|
|
|
margin-bottom: 21.312px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.wp-block-columns .wp-block-column > * {
|
|
|
|
|
margin-top: 32px;
|
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-columns .wp-block-column > *:first-child {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-columns .wp-block-column > *:last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-columns .wp-block-column:last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-columns .wp-block-column:not(:last-child) {
|
|
|
|
|
margin-bottom: 21.312px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.wp-block-columns .wp-block-column:not(:last-child) {
|
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 782px) {
|
|
|
|
|
.wp-block-columns .wp-block-column:not(:last-child) {
|
|
|
|
|
/* Resetting margins to match _block-container.scss */
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-columns.alignfull {
|
|
|
|
|
padding-left: 16px;
|
|
|
|
|
padding-right: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-24 21:08:46 +00:00
|
|
|
|
.wp-block-columns.alignfull:not(:first-child) {
|
|
|
|
|
margin-top: 32px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-columns.alignfull:not(:last-child) {
|
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.wp-block-cover,
|
|
|
|
|
.wp-block-cover-image {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
background-color: black;
|
2019-09-24 20:12:36 +00:00
|
|
|
|
min-height: 480px;
|
2019-12-20 19:06:00 +00:00
|
|
|
|
margin-top: inherit;
|
|
|
|
|
margin-bottom: inherit;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
/* Treating H2 separately to account for legacy /core styles */
|
|
|
|
|
/**
|
|
|
|
|
* Block Options
|
|
|
|
|
*/
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-22 18:02:30 +00:00
|
|
|
|
.wp-block-cover.has-background-dim,
|
|
|
|
|
.wp-block-cover-image.has-background-dim {
|
|
|
|
|
background-color: black;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.wp-block-cover .wp-block-cover__inner-container,
|
|
|
|
|
.wp-block-cover .wp-block-cover-image-text,
|
|
|
|
|
.wp-block-cover .wp-block-cover-text,
|
|
|
|
|
.wp-block-cover-image .wp-block-cover__inner-container,
|
|
|
|
|
.wp-block-cover-image .wp-block-cover-image-text,
|
|
|
|
|
.wp-block-cover-image .wp-block-cover-text {
|
|
|
|
|
margin-top: 32px;
|
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-cover h2,
|
|
|
|
|
.wp-block-cover-image h2 {
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 2.01136rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
letter-spacing: normal;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
line-height: 1.2;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
max-width: inherit;
|
|
|
|
|
text-align: inherit;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-cover h2.has-text-align-left,
|
|
|
|
|
.wp-block-cover-image h2.has-text-align-left {
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-cover h2.has-text-align-center,
|
|
|
|
|
.wp-block-cover-image h2.has-text-align-center {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-cover h2.has-text-align-right,
|
|
|
|
|
.wp-block-cover-image h2.has-text-align-right {
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-03 16:59:17 +00:00
|
|
|
|
.wp-block-cover .wp-block-cover__inner-container,
|
|
|
|
|
.wp-block-cover-image .wp-block-cover__inner-container {
|
|
|
|
|
width: calc(100% - 64px);
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.wp-block-cover .wp-block-cover__inner-container > *,
|
|
|
|
|
.wp-block-cover-image .wp-block-cover__inner-container > * {
|
|
|
|
|
margin-top: 21.312px;
|
|
|
|
|
margin-bottom: 21.312px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.wp-block-cover .wp-block-cover__inner-container > *,
|
|
|
|
|
.wp-block-cover-image .wp-block-cover__inner-container > * {
|
|
|
|
|
margin-top: 32px;
|
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-cover .wp-block-cover__inner-container > *:first-child,
|
|
|
|
|
.wp-block-cover-image .wp-block-cover__inner-container > *:first-child {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-cover .wp-block-cover__inner-container > *:last-child,
|
|
|
|
|
.wp-block-cover-image .wp-block-cover__inner-container > *:last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-cover.alignleft, .wp-block-cover.alignright,
|
|
|
|
|
.wp-block-cover-image.alignleft,
|
|
|
|
|
.wp-block-cover-image.alignright {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-cover.alignleft > *, .wp-block-cover.alignright > *,
|
|
|
|
|
.wp-block-cover-image.alignleft > *,
|
|
|
|
|
.wp-block-cover-image.alignright > * {
|
|
|
|
|
margin-top: calc(2 * 32px);
|
|
|
|
|
margin-bottom: calc(2 * 32px);
|
|
|
|
|
padding-left: 16px;
|
|
|
|
|
padding-right: 16px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-cover.has-left-content, .wp-block-cover.has-right-content,
|
|
|
|
|
.wp-block-cover-image.has-left-content,
|
|
|
|
|
.wp-block-cover-image.has-right-content {
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-file .wp-block-file__button {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
background-color: #0073AA;
|
|
|
|
|
color: #FFFFFF;
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 0.86957rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
margin-left: 16px;
|
|
|
|
|
margin-right: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-file .wp-block-file__button:before, .wp-block-file .wp-block-file__button:after {
|
|
|
|
|
display: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-file a.wp-block-file__button:active,
|
|
|
|
|
.wp-block-file a.wp-block-file__button:focus,
|
|
|
|
|
.wp-block-file a.wp-block-file__button:hover,
|
|
|
|
|
.wp-block-file a.wp-block-file__button:visited {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #FFFFFF;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
opacity: .85;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-gallery {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-gallery .blocks-gallery-image figcaption,
|
|
|
|
|
.wp-block-gallery .blocks-gallery-item figcaption {
|
|
|
|
|
margin: 0;
|
|
|
|
|
color: white;
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 0.75614rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-gallery.alignleft, .wp-block-gallery.alignright {
|
|
|
|
|
max-width: 50%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-group .wp-block-group__inner-container {
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-group .wp-block-group__inner-container > * {
|
|
|
|
|
margin-top: 21.312px;
|
|
|
|
|
margin-bottom: 21.312px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.wp-block-group .wp-block-group__inner-container > * {
|
|
|
|
|
margin-top: 32px;
|
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-group .wp-block-group__inner-container > *:first-child {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-group .wp-block-group__inner-container > *:last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-group.has-background {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
padding: 21.312px;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-03 16:59:17 +00:00
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.wp-block-group.has-background {
|
|
|
|
|
padding: 32px;
|
|
|
|
|
}
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-03 12:54:56 +00:00
|
|
|
|
.wp-block-group.alignfull {
|
|
|
|
|
padding-left: 16px;
|
|
|
|
|
padding-right: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:20:03 +00:00
|
|
|
|
h1, .h1,
|
|
|
|
|
h2, .h2,
|
|
|
|
|
h3, .h3,
|
|
|
|
|
h4, .h4,
|
|
|
|
|
h5, .h5,
|
|
|
|
|
h6, .h6 {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
|
2019-10-15 08:19:59 +00:00
|
|
|
|
font-family: var(--font-headings, "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif);
|
2019-08-15 17:25:10 +00:00
|
|
|
|
font-weight: 600;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
clear: both;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1, .h1 {
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 2.31306rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
letter-spacing: normal;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
line-height: 1.2;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h2, .h2 {
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 2.01136rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
letter-spacing: normal;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
line-height: 1.2;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h3, .h3 {
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 1.74901rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
letter-spacing: normal;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
line-height: 1.2;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h4, .h4 {
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 1.52087rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
letter-spacing: normal;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
line-height: 1.2;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h5, .h5 {
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 1.3225rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
letter-spacing: normal;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
line-height: 1.2;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h6, .h6 {
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 1.15rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
letter-spacing: normal;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
line-height: 1.2;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-04 13:47:07 +00:00
|
|
|
|
.wp-block-image {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.wp-block-image figcaption {
|
|
|
|
|
color: #767676;
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 0.75614rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
margin-top: calc(0.5 * 16px);
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-03 16:59:17 +00:00
|
|
|
|
.entry-content > *[class="wp-block-image"],
|
|
|
|
|
.entry-content [class*="inner-container"] > *[class="wp-block-image"] {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.entry-content > *[class="wp-block-image"] + *,
|
|
|
|
|
.entry-content [class*="inner-container"] > *[class="wp-block-image"] + * {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:20:03 +00:00
|
|
|
|
img {
|
|
|
|
|
height: auto;
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-latest-comments {
|
2019-10-04 13:47:07 +00:00
|
|
|
|
padding-left: 0;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-latest-comments .wp-block-latest-comments__comment {
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 0.86957rem;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
line-height: 1.6;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
/* Vertical margins logic */
|
|
|
|
|
margin-top: 32px;
|
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-latest-comments .wp-block-latest-comments__comment:first-child {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-latest-comments .wp-block-latest-comments__comment:last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-latest-comments .wp-block-latest-comments__comment-meta {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
|
2019-10-15 08:19:59 +00:00
|
|
|
|
font-family: var(--font-headings, "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif);
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-latest-comments .wp-block-latest-comments__comment-date {
|
|
|
|
|
color: #767676;
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 0.86957rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p {
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 0.86957rem;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
line-height: 1.6;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-latest-posts {
|
2019-10-04 13:47:07 +00:00
|
|
|
|
padding-left: 0;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-latest-posts > li {
|
2020-06-22 18:02:30 +00:00
|
|
|
|
word-wrap: break-word;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
/* Vertical margins logic */
|
|
|
|
|
margin-top: 32px;
|
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-latest-posts > li:first-child {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-latest-posts > li:last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-latest-posts > li > a {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
|
2019-10-15 08:19:59 +00:00
|
|
|
|
font-family: var(--font-headings, "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif);
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 1.52087rem;
|
2019-08-15 17:25:10 +00:00
|
|
|
|
font-weight: 600;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
line-height: 1.2;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-latest-posts .wp-block-latest-posts__post-date {
|
|
|
|
|
color: #767676;
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 0.75614rem;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
line-height: 1.6;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-03 16:59:17 +00:00
|
|
|
|
.entry-content [class*="inner-container"] .wp-block-latest-posts .wp-block-latest-posts__post-date,
|
|
|
|
|
.entry-content .has-background .wp-block-latest-posts .wp-block-latest-posts__post-date {
|
|
|
|
|
color: currentColor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-latest-posts .wp-block-latest-posts__post-excerpt,
|
|
|
|
|
.wp-block-latest-posts .wp-block-latest-posts__post-full-content {
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 0.86957rem;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
line-height: 1.6;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-03 16:59:17 +00:00
|
|
|
|
.wp-block-latest-posts.alignfull {
|
|
|
|
|
padding-left: 16px;
|
|
|
|
|
padding-right: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.entry-content [class*="inner-container"] .wp-block-latest-posts.alignfull,
|
|
|
|
|
.entry-content .has-background .wp-block-latest-posts.alignfull {
|
|
|
|
|
padding-left: 0;
|
|
|
|
|
padding-right: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.gallery-item {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
text-align: center;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gallery-item a {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gallery-columns-2 .gallery-item {
|
|
|
|
|
max-width: 50%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gallery-columns-3 .gallery-item {
|
|
|
|
|
max-width: 33.33%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gallery-columns-4 .gallery-item {
|
|
|
|
|
max-width: 25%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gallery-columns-5 .gallery-item {
|
|
|
|
|
max-width: 20%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gallery-columns-6 .gallery-item {
|
|
|
|
|
max-width: 16.66%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gallery-columns-7 .gallery-item {
|
|
|
|
|
max-width: 14.28%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gallery-columns-8 .gallery-item {
|
|
|
|
|
max-width: 12.5%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gallery-columns-9 .gallery-item {
|
|
|
|
|
max-width: 11.11%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gallery-caption {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ul,
|
|
|
|
|
ol {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
|
2019-10-15 08:19:59 +00:00
|
|
|
|
font-family: var(--font-base, "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif);
|
2019-10-04 13:47:07 +00:00
|
|
|
|
margin: 0;
|
|
|
|
|
padding-left: 32px;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-20 19:06:00 +00:00
|
|
|
|
ul.aligncenter,
|
|
|
|
|
ol.aligncenter {
|
|
|
|
|
list-style-position: inside;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ul.alignright,
|
|
|
|
|
ol.alignright {
|
|
|
|
|
list-style-position: inside;
|
|
|
|
|
text-align: right;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:20:03 +00:00
|
|
|
|
ul {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
list-style-type: disc;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ol {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
list-style-type: decimal;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dt {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
|
2019-10-15 08:19:59 +00:00
|
|
|
|
font-family: var(--font-headings, "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif);
|
2019-08-15 15:20:03 +00:00
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dd {
|
2019-10-04 13:47:07 +00:00
|
|
|
|
margin: 0;
|
|
|
|
|
padding-left: 32px;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-media-text {
|
|
|
|
|
/**
|
|
|
|
|
* Block Options
|
|
|
|
|
*/
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-media-text .wp-block-media-text__content {
|
|
|
|
|
padding: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 640px) {
|
|
|
|
|
.wp-block-media-text .wp-block-media-text__content {
|
|
|
|
|
padding: 32px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-media-text .wp-block-media-text__content > * {
|
|
|
|
|
margin-top: 21.312px;
|
|
|
|
|
margin-bottom: 21.312px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.wp-block-media-text .wp-block-media-text__content > * {
|
|
|
|
|
margin-top: 32px;
|
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-media-text .wp-block-media-text__content > *:first-child {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-media-text .wp-block-media-text__content > *:last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
|
|
|
|
|
padding-top: 32px;
|
|
|
|
|
padding-bottom: 32px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p.has-background {
|
|
|
|
|
padding: 16px 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.a8c-posts-list__listing {
|
|
|
|
|
list-style: none;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.a8c-posts-list__listing:not(:last-child) {
|
|
|
|
|
margin-bottom: calc(3 * 32px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.a8c-posts-list-item__featured span {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
background-color: #0073AA;
|
|
|
|
|
font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
|
2019-10-15 08:19:59 +00:00
|
|
|
|
font-family: var(--font-headings, "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif);
|
2019-08-15 15:20:03 +00:00
|
|
|
|
font-weight: bold;
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 0.86957rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
line-height: 1;
|
|
|
|
|
padding: calc(0.5 * 16px) calc(0.66 * 16px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.a8c-posts-list__item {
|
|
|
|
|
display: block;
|
|
|
|
|
/* Vertical margins logic between posts */
|
|
|
|
|
margin-top: calc(3 * 32px);
|
|
|
|
|
margin-bottom: calc(3 * 32px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.a8c-posts-list__item:first-child {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.a8c-posts-list__item:last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.a8c-posts-list__item .entry > * {
|
|
|
|
|
/* Vertical margins logic between post details */
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.a8c-posts-list__item .entry > *:first-child {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.a8c-posts-list__item .entry > *:last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.a8c-posts-list__item .a8c-posts-list-item__meta {
|
|
|
|
|
color: #767676;
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 0.86957rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.a8c-posts-list__item .a8c-posts-list-item__meta a {
|
|
|
|
|
color: currentColor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.a8c-posts-list__item .a8c-posts-list-item__meta a:hover, .a8c-posts-list__item .a8c-posts-list-item__meta a:active {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #005177;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.a8c-posts-list__item .a8c-posts-list-item__edit-link {
|
|
|
|
|
margin-left: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.a8c-posts-list__view-all {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-pullquote {
|
2019-08-15 17:25:10 +00:00
|
|
|
|
border-top-color: transparent;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
border-top-width: 4px;
|
2019-08-15 17:25:10 +00:00
|
|
|
|
border-bottom-color: transparent;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
border-bottom-width: 4px;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #1e1e1e;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-09-24 16:08:28 +00:00
|
|
|
|
.wp-block-pullquote blockquote p {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
|
2019-10-15 08:19:59 +00:00
|
|
|
|
font-family: var(--font-headings, "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif);
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 1.52087rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
letter-spacing: normal;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
line-height: 1.2;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-09-24 16:08:28 +00:00
|
|
|
|
.wp-block-pullquote.is-style-solid-color blockquote p {
|
|
|
|
|
font-size: 1.52087rem;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.wp-block-pullquote a {
|
|
|
|
|
color: currentColor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-pullquote .wp-block-pullquote__citation,
|
|
|
|
|
.wp-block-pullquote cite,
|
|
|
|
|
.wp-block-pullquote footer {
|
|
|
|
|
color: #767676;
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 0.86957rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
letter-spacing: normal;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-24 16:08:28 +00:00
|
|
|
|
.wp-block-pullquote blockquote {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
padding-left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.wp-block-pullquote.is-style-solid-color {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #FFFFFF;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation,
|
|
|
|
|
.wp-block-pullquote.is-style-solid-color cite,
|
|
|
|
|
.wp-block-pullquote.is-style-solid-color footer {
|
|
|
|
|
color: currentColor;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-23 07:25:16 +00:00
|
|
|
|
.wp-block-pullquote.is-style-solid-color:not(.has-background) {
|
|
|
|
|
background-color: #0073AA;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.wp-block-quote {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
border-left-color: #0073AA;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
margin: 32px 0;
|
2019-10-04 13:47:07 +00:00
|
|
|
|
padding-left: 16px;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
/**
|
|
|
|
|
* Block Options
|
|
|
|
|
*/
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-quote > * {
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-quote > *:first-child {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-quote > *:last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-quote p {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
|
2019-10-15 08:19:59 +00:00
|
|
|
|
font-family: var(--font-headings, "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif);
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 1.52087rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
letter-spacing: normal;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
line-height: 1.2;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-quote .wp-block-quote__citation,
|
|
|
|
|
.wp-block-quote cite,
|
|
|
|
|
.wp-block-quote footer {
|
|
|
|
|
color: #767676;
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 0.86957rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
letter-spacing: normal;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-27 14:02:45 +00:00
|
|
|
|
.has-background:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
|
|
|
|
|
[class*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
|
|
|
|
|
[style*="background-color"] .wp-block-quote .wp-block-quote__citation,
|
|
|
|
|
.wp-block-cover[style*="background-image"] .wp-block-quote .wp-block-quote__citation, .has-background:not(.has-background-background-color)
|
|
|
|
|
.wp-block-quote cite,
|
|
|
|
|
[class*="background-color"]:not(.has-background-background-color)
|
|
|
|
|
.wp-block-quote cite,
|
|
|
|
|
[style*="background-color"]
|
|
|
|
|
.wp-block-quote cite,
|
|
|
|
|
.wp-block-cover[style*="background-image"]
|
|
|
|
|
.wp-block-quote cite, .has-background:not(.has-background-background-color)
|
|
|
|
|
.wp-block-quote footer,
|
|
|
|
|
[class*="background-color"]:not(.has-background-background-color)
|
|
|
|
|
.wp-block-quote footer,
|
|
|
|
|
[style*="background-color"]
|
|
|
|
|
.wp-block-quote footer,
|
|
|
|
|
.wp-block-cover[style*="background-image"]
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.wp-block-quote footer {
|
|
|
|
|
color: currentColor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-quote[style*="text-align:right"], .wp-block-quote[style*="text-align: right"] {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
border-right-color: #0073AA;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-quote.is-style-large, .wp-block-quote.is-large {
|
|
|
|
|
/* Resetting margins to match _block-container.scss */
|
|
|
|
|
margin-top: 32px;
|
|
|
|
|
margin-bottom: 32px;
|
2019-10-04 13:47:07 +00:00
|
|
|
|
padding: 0;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-quote.is-style-large p, .wp-block-quote.is-large p {
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 1.74901rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
letter-spacing: normal;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
line-height: 1.2;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-quote.is-style-large .wp-block-quote__citation,
|
|
|
|
|
.wp-block-quote.is-style-large cite,
|
|
|
|
|
.wp-block-quote.is-style-large footer, .wp-block-quote.is-large .wp-block-quote__citation,
|
|
|
|
|
.wp-block-quote.is-large cite,
|
|
|
|
|
.wp-block-quote.is-large footer {
|
|
|
|
|
color: #767676;
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 0.86957rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
letter-spacing: normal;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-27 14:02:45 +00:00
|
|
|
|
.has-background:not(.has-background-background-color) .wp-block-quote,
|
|
|
|
|
[class*="background-color"]:not(.has-background-background-color) .wp-block-quote,
|
|
|
|
|
[style*="background-color"] .wp-block-quote,
|
|
|
|
|
.wp-block-cover[style*="background-image"] .wp-block-quote {
|
|
|
|
|
border-color: currentColor;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-01 09:33:28 +00:00
|
|
|
|
.wp-block-search {
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
|
|
|
|
|
background: white;
|
|
|
|
|
color: black;
|
|
|
|
|
border: 1px solid #CCCCCC;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
|
|
|
|
|
padding: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button {
|
|
|
|
|
padding: 16px 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-icon {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-search .wp-block-search__label {
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-search .wp-block-search__input {
|
|
|
|
|
color: black;
|
|
|
|
|
border: 1px solid #CCCCCC;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
padding: 16px;
|
|
|
|
|
font-size: 1rem;
|
2021-06-02 13:23:31 +00:00
|
|
|
|
line-height: 1rem;
|
2021-06-01 09:33:28 +00:00
|
|
|
|
font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
|
|
|
|
|
font-family: var(--font-headings, "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif);
|
|
|
|
|
max-width: inherit;
|
|
|
|
|
margin-right: calc( .66 * 16px);
|
|
|
|
|
background: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-search .wp-block-search__input:focus {
|
|
|
|
|
color: black;
|
|
|
|
|
border-color: #CCCCCC;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-search .wp-block-search__button {
|
|
|
|
|
border: none;
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-search .wp-block-search__button.has-icon {
|
|
|
|
|
transform: scaleX(-1);
|
|
|
|
|
padding: 0;
|
2021-06-02 13:23:31 +00:00
|
|
|
|
min-width: calc(2* 16px + 1rem + 4px);
|
|
|
|
|
min-height: calc(2* 16px + 1rem + 4px);
|
2021-06-01 09:33:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-search .wp-block-search__button.has-icon svg {
|
|
|
|
|
fill: currentColor;
|
|
|
|
|
width: 29px;
|
|
|
|
|
height: 29px;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:20:03 +00:00
|
|
|
|
hr {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
border-bottom: 2px solid #CCCCCC;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
clear: both;
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-03 16:59:17 +00:00
|
|
|
|
hr.wp-block-separator {
|
|
|
|
|
border-bottom: 2px solid #CCCCCC;
|
|
|
|
|
/**
|
|
|
|
|
* Block Options
|
|
|
|
|
*/
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-22 20:53:18 +00:00
|
|
|
|
hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
|
|
|
|
|
max-width: 96px;
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-22 18:02:30 +00:00
|
|
|
|
hr.wp-block-separator.is-style-wide {
|
|
|
|
|
border-bottom-width: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-31 19:33:11 +00:00
|
|
|
|
hr.wp-block-separator.is-style-dots.has-background, hr.wp-block-separator.is-style-dots.has-text-color {
|
|
|
|
|
background-color: transparent !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
hr.wp-block-separator.is-style-dots.has-background:before, hr.wp-block-separator.is-style-dots.has-text-color:before {
|
|
|
|
|
color: currentColor !important;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-03 16:59:17 +00:00
|
|
|
|
hr.wp-block-separator.is-style-dots:before {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #CCCCCC;
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 1.52087rem;
|
|
|
|
|
letter-spacing: 0.86957rem;
|
|
|
|
|
padding-left: 0.86957rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-27 14:02:45 +00:00
|
|
|
|
.has-background:not(.has-background-background-color) hr.wp-block-separator,
|
|
|
|
|
[class*="background-color"]:not(.has-background-background-color) hr.wp-block-separator,
|
|
|
|
|
[style*="background-color"] hr.wp-block-separator,
|
|
|
|
|
.wp-block-cover[style*="background-image"] hr.wp-block-separator {
|
|
|
|
|
border-color: currentColor;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.wp-block-jetpack-slideshow ul {
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-spacer {
|
|
|
|
|
display: block;
|
|
|
|
|
margin-bottom: 0 !important;
|
|
|
|
|
margin-top: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (max-width: 559px) {
|
|
|
|
|
.wp-block-spacer[style] {
|
|
|
|
|
height: 16px !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.jetpack_subscription_widget input[type="text"] {
|
|
|
|
|
padding: 16px !important;
|
|
|
|
|
width: 100% !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
table,
|
|
|
|
|
.wp-block-table {
|
|
|
|
|
width: 100%;
|
|
|
|
|
min-width: 240px;
|
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
table th,
|
|
|
|
|
.wp-block-table th {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
|
2019-10-15 08:19:59 +00:00
|
|
|
|
font-family: var(--font-headings, "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif);
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
table td,
|
|
|
|
|
table th,
|
|
|
|
|
.wp-block-table td,
|
|
|
|
|
.wp-block-table th {
|
|
|
|
|
padding: calc( 0.5 * 16px);
|
|
|
|
|
border: 1px solid;
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-22 18:02:30 +00:00
|
|
|
|
table.is-style-stripes tbody tr:nth-child(odd),
|
|
|
|
|
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
|
|
|
|
|
background-color: #FAFAFA;
|
|
|
|
|
color: #1e1e1e;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.wp-block-video figcaption {
|
|
|
|
|
color: #767676;
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 0.75614rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
margin-top: calc(0.5 * 16px);
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
* > figure > video {
|
|
|
|
|
max-width: unset;
|
|
|
|
|
width: 100%;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-03 16:59:17 +00:00
|
|
|
|
/* Block Alignments */
|
|
|
|
|
/**
|
|
|
|
|
* .alignleft
|
|
|
|
|
*/
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.alignleft {
|
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
text-align: left;
|
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
float: left;
|
2019-09-03 16:59:17 +00:00
|
|
|
|
margin-top: 0;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
margin-right: 16px;
|
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-30 18:25:34 +00:00
|
|
|
|
.entry-content > .alignleft {
|
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-03 16:59:17 +00:00
|
|
|
|
/**
|
|
|
|
|
* .aligncenter
|
|
|
|
|
*/
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.aligncenter {
|
|
|
|
|
clear: both;
|
2019-10-23 22:25:32 +00:00
|
|
|
|
display: block;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
float: none;
|
2019-10-23 22:25:32 +00:00
|
|
|
|
margin-right: auto;
|
|
|
|
|
margin-left: auto;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-03 16:59:17 +00:00
|
|
|
|
/**
|
|
|
|
|
* .alignright
|
|
|
|
|
*/
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.alignright {
|
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
float: right;
|
2019-09-03 16:59:17 +00:00
|
|
|
|
margin-top: 0;
|
|
|
|
|
margin-bottom: 32px;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
margin-left: 16px;
|
2019-09-03 16:59:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-30 18:25:34 +00:00
|
|
|
|
.entry-content > .alignright {
|
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
float: right;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-03 16:59:17 +00:00
|
|
|
|
.entry-content * > .alignleft + *,
|
|
|
|
|
.entry-content * > .alignright + * {
|
2019-08-15 15:20:03 +00:00
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-03 16:59:17 +00:00
|
|
|
|
/**
|
|
|
|
|
* .aligndefault
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* .alignwide
|
|
|
|
|
*/
|
|
|
|
|
.alignwide {
|
2019-08-15 15:20:03 +00:00
|
|
|
|
clear: both;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-03 16:59:17 +00:00
|
|
|
|
/**
|
|
|
|
|
* .alignfull
|
|
|
|
|
*/
|
|
|
|
|
.alignfull {
|
2019-08-15 15:20:03 +00:00
|
|
|
|
clear: both;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.has-left-content {
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.has-right-content {
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.has-parallax {
|
|
|
|
|
background-attachment: fixed;
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-22 18:02:30 +00:00
|
|
|
|
.has-primary-color {
|
|
|
|
|
color: #0073AA;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-22 18:02:30 +00:00
|
|
|
|
.has-secondary-color {
|
|
|
|
|
color: #0d1b24;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-22 18:02:30 +00:00
|
|
|
|
.has-foreground-color {
|
|
|
|
|
color: #1e1e1e;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-22 18:02:30 +00:00
|
|
|
|
.has-foreground-light-color {
|
|
|
|
|
color: #767676;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-22 18:02:30 +00:00
|
|
|
|
.has-foreground-dark-color {
|
|
|
|
|
color: #000000;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-22 18:02:30 +00:00
|
|
|
|
.has-background-light-color {
|
|
|
|
|
color: #FAFAFA;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-22 18:02:30 +00:00
|
|
|
|
.has-background-dark-color {
|
|
|
|
|
color: #DDDDDD;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-22 18:02:30 +00:00
|
|
|
|
.has-background-dim,
|
|
|
|
|
.has-background-color {
|
|
|
|
|
color: #FFFFFF;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-22 18:02:30 +00:00
|
|
|
|
.has-background p:not(.has-text-color),
|
|
|
|
|
.has-background h1:not(.has-text-color),
|
|
|
|
|
.has-background h2:not(.has-text-color),
|
|
|
|
|
.has-background h3:not(.has-text-color),
|
|
|
|
|
.has-background h4:not(.has-text-color),
|
|
|
|
|
.has-background h5:not(.has-text-color),
|
|
|
|
|
.has-background h6:not(.has-text-color) {
|
2022-09-20 06:00:55 +00:00
|
|
|
|
color: currentcolor;
|
2019-09-03 16:59:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-22 18:02:30 +00:00
|
|
|
|
.has-primary-background-color,
|
|
|
|
|
.has-primary-background-color.has-background-dim {
|
|
|
|
|
background-color: #0073AA;
|
2021-02-04 19:53:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.has-primary-background-color:not(.has-text-color),
|
|
|
|
|
.has-primary-background-color.has-background-dim:not(.has-text-color) {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #FFFFFF;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-22 18:02:30 +00:00
|
|
|
|
.has-secondary-background-color,
|
|
|
|
|
.has-secondary-background-color.has-background-dim {
|
|
|
|
|
background-color: #0d1b24;
|
2021-02-04 19:53:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.has-secondary-background-color:not(.has-text-color),
|
|
|
|
|
.has-secondary-background-color.has-background-dim:not(.has-text-color) {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #FFFFFF;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-02-09 15:38:57 +00:00
|
|
|
|
.has-background-dim,
|
|
|
|
|
.has-foreground-background-color,
|
|
|
|
|
.has-foreground-background-color.has-background-dim {
|
2021-02-04 19:53:47 +00:00
|
|
|
|
background-color: #1e1e1e;
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-22 18:02:30 +00:00
|
|
|
|
.has-background-dim,
|
2022-09-20 06:00:55 +00:00
|
|
|
|
.has-foreground-background-color:not(.has-text-color),
|
|
|
|
|
.has-foreground-background-color.has-background-dim:not(.has-text-color) {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #FFFFFF;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-22 18:02:30 +00:00
|
|
|
|
.has-foreground-light-background-color,
|
|
|
|
|
.has-foreground-light-background-color.has-background-dim {
|
|
|
|
|
background-color: #767676;
|
2021-02-04 19:53:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.has-foreground-light-background-color:not(.has-text-color),
|
|
|
|
|
.has-foreground-light-background-color.has-background-dim:not(.has-text-color) {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #FFFFFF;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-22 18:02:30 +00:00
|
|
|
|
.has-foreground-dark-background-color,
|
|
|
|
|
.has-foreground-dark-background-color.has-background-dim {
|
|
|
|
|
background-color: #000000;
|
2021-02-04 19:53:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.has-foreground-dark-background-color:not(.has-text-color),
|
|
|
|
|
.has-foreground-dark-background-color.has-background-dim:not(.has-text-color) {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #FFFFFF;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-22 18:02:30 +00:00
|
|
|
|
.has-background-light-background-color,
|
|
|
|
|
.has-background-light-background-color.has-background-dim {
|
|
|
|
|
background-color: #FAFAFA;
|
2021-02-04 19:53:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.has-background-light-background-color:not(.has-text-color),
|
|
|
|
|
.has-background-light-background-color.has-background-dim:not(.has-text-color) {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #1e1e1e;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-22 18:02:30 +00:00
|
|
|
|
.has-background-dark-background-color,
|
|
|
|
|
.has-background-dark-background-color.has-background-dim {
|
|
|
|
|
background-color: #DDDDDD;
|
2021-02-04 19:53:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.has-background-dark-background-color:not(.has-text-color),
|
|
|
|
|
.has-background-dark-background-color.has-background-dim:not(.has-text-color) {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #1e1e1e;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-22 18:02:30 +00:00
|
|
|
|
.has-background-background-color,
|
|
|
|
|
.has-background-background-color.has-background-dim {
|
|
|
|
|
background-color: #FFFFFF;
|
2021-02-04 19:53:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.has-background-background-color:not(.has-text-color),
|
|
|
|
|
.has-background-background-color.has-background-dim:not(.has-text-color) {
|
2021-06-23 14:49:12 +00:00
|
|
|
|
color: #1e1e1e;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.is-small-text,
|
|
|
|
|
.has-small-font-size {
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 0.86957rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.is-regular-text,
|
|
|
|
|
.has-regular-font-size,
|
|
|
|
|
.has-normal-font-size,
|
|
|
|
|
.has-medium-font-size {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.is-large-text,
|
|
|
|
|
.has-large-font-size {
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 1.3225rem;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
line-height: 1.2;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.is-larger-text,
|
|
|
|
|
.has-larger-font-size,
|
|
|
|
|
.has-huge-font-size {
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 1.52087rem;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
line-height: 1.2;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.has-drop-cap:not(:focus)::first-letter {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
|
2019-10-15 08:19:59 +00:00
|
|
|
|
font-family: var(--font-headings, "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif);
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: calc(2 * 2.31306rem);
|
2019-08-15 17:25:10 +00:00
|
|
|
|
font-weight: 600;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
line-height: 0.66;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
float: left;
|
|
|
|
|
margin: 0.1em 0.1em 0 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.has-drop-cap:not(:focus)::after {
|
|
|
|
|
content: "";
|
|
|
|
|
display: table;
|
|
|
|
|
clear: both;
|
|
|
|
|
padding-top: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.desktop-only {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.desktop-only {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Spacing Overrides
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
* Margins
|
|
|
|
|
*/
|
|
|
|
|
.margin-top-none {
|
|
|
|
|
margin-top: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.margin-top-half {
|
|
|
|
|
margin-top: 16px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.margin-top-default {
|
|
|
|
|
margin-top: 32px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.margin-right-none {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
margin-right: 0 !important;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.margin-right-half {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
margin-right: 16px !important;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.margin-right-default {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
margin-right: 32px !important;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.margin-bottom-none {
|
|
|
|
|
margin-bottom: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.margin-bottom-half {
|
|
|
|
|
margin-bottom: 16px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.margin-bottom-default {
|
|
|
|
|
margin-bottom: 32px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.margin-left-none {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
margin-left: 0 !important;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.margin-left-half {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
margin-left: 16px !important;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.margin-left-default {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
margin-left: 32px !important;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Padding
|
|
|
|
|
*/
|
|
|
|
|
.padding-top-none {
|
|
|
|
|
padding-top: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.padding-top-half {
|
|
|
|
|
padding-top: 16px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.padding-top-default {
|
|
|
|
|
padding-top: 32px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.padding-right-none {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
padding-right: 0 !important;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.padding-right-half {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
padding-right: 16px !important;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.padding-right-default {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
padding-right: 32px !important;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.padding-bottom-none {
|
|
|
|
|
padding-bottom: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.padding-bottom-half {
|
|
|
|
|
padding-bottom: 16px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.padding-bottom-default {
|
|
|
|
|
padding-bottom: 32px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.padding-left-none {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
padding-left: 0 !important;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.padding-left-half {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
padding-left: 16px !important;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.padding-left-default {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
padding-left: 32px !important;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Components
|
|
|
|
|
* - Similar to Blocks but exist outside of the "current" editor context
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
* Components
|
|
|
|
|
* - Similar to Blocks but exist outside of the "current" editor context
|
|
|
|
|
*/
|
|
|
|
|
.site-branding {
|
2019-08-15 17:25:10 +00:00
|
|
|
|
color: #000000;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-title {
|
2019-08-15 16:03:15 +00:00
|
|
|
|
color: #000000;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
|
2019-10-15 08:19:59 +00:00
|
|
|
|
font-family: var(--font-headings, "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif);
|
2019-08-15 15:20:03 +00:00
|
|
|
|
letter-spacing: normal;
|
|
|
|
|
line-height: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-title a {
|
|
|
|
|
color: currentColor;
|
2019-08-15 16:03:15 +00:00
|
|
|
|
font-weight: 600;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-title a:link, .site-title a:visited {
|
|
|
|
|
color: currentColor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-title a:hover {
|
2019-08-15 16:03:15 +00:00
|
|
|
|
color: #0073AA;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-description {
|
|
|
|
|
color: currentColor;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
|
2019-10-15 08:19:59 +00:00
|
|
|
|
font-family: var(--font-base, "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif);
|
2019-10-15 10:10:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body:not(.fse-enabled) .site-title {
|
|
|
|
|
font-size: 1.74901rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body:not(.fse-enabled) .site-description {
|
2019-09-24 21:08:46 +00:00
|
|
|
|
font-size: 1.74901rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-navigation {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #1e1e1e;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-navigation > div {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-navigation #toggle-menu {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-30 20:43:57 +00:00
|
|
|
|
.main-navigation #toggle:checked ~ div:not(.woocommerce-menu-container) {
|
2019-08-15 15:20:03 +00:00
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-navigation #toggle:focus + #toggle-menu {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
background-color: #005177;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
outline: inherit;
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-navigation .dropdown-icon.close {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-navigation #toggle:checked + #toggle-menu .open {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-navigation #toggle:checked + #toggle-menu .close {
|
|
|
|
|
display: inline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.main-navigation > div {
|
2019-10-30 20:43:57 +00:00
|
|
|
|
display: inline-block;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
.main-navigation #toggle-menu {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
.main-navigation > div > ul > li > ul {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-navigation > div > ul {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
list-style: none;
|
2019-09-03 16:59:17 +00:00
|
|
|
|
margin: 0;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
max-width: none;
|
2019-10-04 13:47:07 +00:00
|
|
|
|
padding-left: 0;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
position: relative;
|
|
|
|
|
/* Sub-menus Flyout */
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-04 13:47:07 +00:00
|
|
|
|
.main-navigation > div > ul ul {
|
|
|
|
|
padding-left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.main-navigation > div > ul li {
|
|
|
|
|
display: block;
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-navigation > div > ul li:hover, .main-navigation > div > ul li[focus-within] {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
z-index: 99999;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-navigation > div > ul li:hover, .main-navigation > div > ul li:focus-within {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
z-index: 99999;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.main-navigation > div > ul li {
|
|
|
|
|
display: inherit;
|
|
|
|
|
width: inherit;
|
|
|
|
|
/* Submenu display */
|
|
|
|
|
}
|
|
|
|
|
.main-navigation > div > ul li:hover > ul,
|
|
|
|
|
.main-navigation > div > ul li[focus-within] > ul,
|
|
|
|
|
.main-navigation > div > ul li ul:hover,
|
|
|
|
|
.main-navigation > div > ul li ul:focus {
|
|
|
|
|
visibility: visible;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
.main-navigation > div > ul li:hover > ul,
|
|
|
|
|
.main-navigation > div > ul li:focus-within > ul,
|
|
|
|
|
.main-navigation > div > ul li ul:hover,
|
|
|
|
|
.main-navigation > div > ul li ul:focus {
|
|
|
|
|
visibility: visible;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-03 16:59:17 +00:00
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.main-navigation > div > ul > li > a {
|
|
|
|
|
line-height: 1;
|
|
|
|
|
}
|
|
|
|
|
.main-navigation > div > ul > li > a:before, .main-navigation > div > ul > li > a:after {
|
|
|
|
|
content: '';
|
|
|
|
|
display: block;
|
|
|
|
|
height: 0;
|
|
|
|
|
width: 0;
|
|
|
|
|
}
|
|
|
|
|
.main-navigation > div > ul > li > a:before {
|
|
|
|
|
margin-bottom: -0.12em;
|
|
|
|
|
}
|
|
|
|
|
.main-navigation > div > ul > li > a:after {
|
|
|
|
|
margin-top: -0.11em;
|
|
|
|
|
}
|
|
|
|
|
.main-navigation > div > ul > li:first-of-type > a {
|
|
|
|
|
padding-left: 0;
|
|
|
|
|
}
|
|
|
|
|
.main-navigation > div > ul > li:last-of-type > a {
|
|
|
|
|
padding-right: 0;
|
|
|
|
|
}
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-navigation > div > ul > li > .sub-menu {
|
|
|
|
|
margin: 0;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.main-navigation > div > ul > li > .sub-menu {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
background: #FFFFFF;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.2);
|
|
|
|
|
left: 0;
|
|
|
|
|
top: 100%;
|
|
|
|
|
min-width: max-content;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
position: absolute;
|
|
|
|
|
transition: all 0.5s ease;
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-navigation > div > ul > li > .sub-menu .sub-menu {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-navigation a {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #0073AA;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
display: block;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
|
2019-10-17 10:58:33 +00:00
|
|
|
|
font-family: var(--font-base, "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif);
|
2019-08-15 16:03:15 +00:00
|
|
|
|
font-weight: 600;
|
2019-09-03 16:59:17 +00:00
|
|
|
|
padding: 8px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.main-navigation a {
|
|
|
|
|
padding: 16px;
|
|
|
|
|
}
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-navigation a:link, .main-navigation a:visited {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #0073AA;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-navigation a:hover {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #005177;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-navigation .sub-menu {
|
|
|
|
|
list-style: none;
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
/* Reset the counter for each UL */
|
|
|
|
|
counter-reset: nested-list;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-navigation .sub-menu .menu-item a {
|
|
|
|
|
padding-top: 8px;
|
|
|
|
|
padding-bottom: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-navigation .sub-menu .menu-item a::before {
|
|
|
|
|
/* Increment the dashes */
|
|
|
|
|
counter-increment: nested-list;
|
|
|
|
|
/* Insert dashes with spaces in between */
|
|
|
|
|
content: "– " counters(nested-list, "– ", none);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.main-navigation > div > ul > .menu-item-has-children > a::after {
|
|
|
|
|
content: "\00a0\25BC";
|
|
|
|
|
display: inline-block;
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 0.75614rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
height: inherit;
|
|
|
|
|
width: inherit;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-navigation .hide-visually {
|
|
|
|
|
position: absolute !important;
|
|
|
|
|
clip: rect(1px, 1px, 1px, 1px);
|
|
|
|
|
padding: 0 !important;
|
|
|
|
|
border: 0 !important;
|
|
|
|
|
height: 1px !important;
|
|
|
|
|
width: 1px !important;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-15 10:10:57 +00:00
|
|
|
|
body:not(.fse-enabled) .main-navigation a {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.social-navigation > div > ul {
|
|
|
|
|
align-content: center;
|
|
|
|
|
display: flex;
|
|
|
|
|
list-style: none;
|
2019-09-03 16:59:17 +00:00
|
|
|
|
margin: 0;
|
2019-10-04 13:47:07 +00:00
|
|
|
|
padding-left: 0;
|
2019-09-03 16:59:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.social-navigation > div > ul > li:first-of-type > a {
|
|
|
|
|
padding-left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.social-navigation > div > ul > li:last-of-type > a {
|
|
|
|
|
padding-right: 0;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.social-navigation a {
|
2019-08-15 16:03:15 +00:00
|
|
|
|
color: #000000;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
display: inline-block;
|
|
|
|
|
padding: 0 calc( 0.5 * calc(0.66 * 16px ));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.social-navigation a:hover {
|
2019-08-15 16:03:15 +00:00
|
|
|
|
color: #0073AA;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.social-navigation svg {
|
|
|
|
|
fill: currentColor;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-03 16:59:17 +00:00
|
|
|
|
.site-footer {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:20:03 +00:00
|
|
|
|
@media only screen and (min-width: 640px) {
|
|
|
|
|
.site-footer {
|
|
|
|
|
align-items: flex-end;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-info {
|
|
|
|
|
color: #767676;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
|
2019-10-15 08:19:59 +00:00
|
|
|
|
font-family: var(--font-headings, "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif);
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 0.75614rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 640px) {
|
|
|
|
|
.site-info {
|
|
|
|
|
order: 1;
|
|
|
|
|
flex: 1 0 50%;
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-info .site-name {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-info a {
|
|
|
|
|
color: currentColor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-info a:link, .site-info a:visited {
|
|
|
|
|
color: currentColor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-info a:hover {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #005177;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer-navigation {
|
|
|
|
|
display: inline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 640px) {
|
|
|
|
|
.footer-navigation {
|
|
|
|
|
flex: 1 0 50%;
|
|
|
|
|
order: 2;
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer-navigation > div {
|
|
|
|
|
display: inline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer-navigation .footer-menu {
|
|
|
|
|
color: #767676;
|
2019-09-03 16:59:17 +00:00
|
|
|
|
margin: 0;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
padding-left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 640px) {
|
|
|
|
|
.footer-navigation .footer-menu {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-03 16:59:17 +00:00
|
|
|
|
.footer-navigation .footer-menu > li {
|
2019-08-15 15:20:03 +00:00
|
|
|
|
display: inline;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-03 16:59:17 +00:00
|
|
|
|
.footer-navigation .footer-menu > li:first-of-type > a {
|
|
|
|
|
padding-left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer-navigation .footer-menu > li:last-of-type {
|
|
|
|
|
padding-right: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.footer-navigation .footer-menu a {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
|
2019-10-15 08:19:59 +00:00
|
|
|
|
font-family: var(--font-base, "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif);
|
2019-08-15 16:03:15 +00:00
|
|
|
|
font-weight: 600;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
padding: 16px;
|
|
|
|
|
color: currentColor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer-navigation .footer-menu a:link, .footer-navigation .footer-menu a:visited {
|
|
|
|
|
color: currentColor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer-navigation .footer-menu a:hover {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #005177;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-15 10:10:57 +00:00
|
|
|
|
body:not(.fse-enabled) .footer-menu a {
|
|
|
|
|
font-size: 0.86957rem;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.entry-title {
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 2.01136rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
letter-spacing: normal;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
line-height: 1.2;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.entry-meta,
|
|
|
|
|
.entry-footer {
|
|
|
|
|
color: #767676;
|
|
|
|
|
clear: both;
|
|
|
|
|
float: none;
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 0.86957rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.entry-meta > span,
|
|
|
|
|
.entry-footer > span {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin-right: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.entry-meta > span > *,
|
|
|
|
|
.entry-footer > span > * {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.entry-meta > span:last-child,
|
|
|
|
|
.entry-footer > span:last-child {
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.entry-meta > span .published + .updated,
|
|
|
|
|
.entry-footer > span .published + .updated {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.entry-meta a,
|
|
|
|
|
.entry-footer a {
|
|
|
|
|
color: currentColor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.entry-meta a:hover, .entry-meta a:active,
|
|
|
|
|
.entry-footer a:hover,
|
|
|
|
|
.entry-footer a:active {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #005177;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.entry-meta .svg-icon,
|
|
|
|
|
.entry-footer .svg-icon {
|
|
|
|
|
fill: currentColor;
|
|
|
|
|
position: relative;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
margin-right: calc(0.25 * 16px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Entry Content
|
|
|
|
|
*/
|
|
|
|
|
.entry-content p {
|
|
|
|
|
word-wrap: break-word;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.entry-content .more-link {
|
2019-09-26 21:41:27 +00:00
|
|
|
|
display: block;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
color: inherit;
|
2019-10-30 20:43:57 +00:00
|
|
|
|
margin-top: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.entry-content .more-link {
|
|
|
|
|
margin-top: 32px;
|
|
|
|
|
}
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.entry-content .more-link:after {
|
2021-01-08 12:49:53 +00:00
|
|
|
|
content: "→" /*rtl:"←"*/;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
display: inline-block;
|
|
|
|
|
margin-left: 0.5em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.entry-content .more-link:hover {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-15 22:03:30 +00:00
|
|
|
|
.entry-content > iframe,
|
|
|
|
|
.entry-content > iframe[style],
|
|
|
|
|
.entry-content > fb\:post {
|
|
|
|
|
display: block !important;
|
|
|
|
|
margin-left: auto !important;
|
|
|
|
|
margin-right: auto !important;
|
|
|
|
|
overflow: scroll;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-19 14:59:52 +00:00
|
|
|
|
.home.page.hide-homepage-header.hide-homepage-title .entry-content {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-20 16:33:47 +00:00
|
|
|
|
.home.page.hide-homepage-header.hide-homepage-title .entry-content > *:first-child {
|
|
|
|
|
margin-top: 32px;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-19 14:59:52 +00:00
|
|
|
|
.home.page.hide-homepage-header.hide-homepage-title .entry-content > .wp-block-image.alignfull:first-child,
|
|
|
|
|
.home.page.hide-homepage-header.hide-homepage-title .entry-content > .wp-block-cover.alignfull:first-child,
|
|
|
|
|
.home.page.hide-homepage-header.hide-homepage-title .entry-content > .wp-block-media-text.alignfull:first-child,
|
|
|
|
|
.home.page.hide-homepage-header.hide-homepage-title .entry-content > .wp-block-group.has-background.alignfull:first-child {
|
|
|
|
|
margin-top: -32px;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-27 14:02:45 +00:00
|
|
|
|
.entry-attachment {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:20:03 +00:00
|
|
|
|
/**
|
|
|
|
|
* Post Thumbnails
|
|
|
|
|
*/
|
|
|
|
|
.post-thumbnail {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.post-thumbnail .post-thumbnail-inner {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Author
|
|
|
|
|
*/
|
|
|
|
|
/* Author description */
|
|
|
|
|
.site-main > article > .author-bio {
|
|
|
|
|
margin-top: calc(2 * 32px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.author-bio .author-title {
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 1.74901rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Next/Previous navigation */
|
|
|
|
|
.post-navigation .meta-nav {
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 0.86957rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.post-navigation .post-title {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
|
2019-10-15 08:19:59 +00:00
|
|
|
|
font-family: var(--font-headings, "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif);
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 1.3225rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.post-navigation .nav-next,
|
|
|
|
|
.post-navigation .nav-previous {
|
|
|
|
|
margin-top: 32px;
|
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.post-navigation .nav-next:first-child,
|
|
|
|
|
.post-navigation .nav-previous:first-child {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.post-navigation .nav-next:last-child,
|
|
|
|
|
.post-navigation .nav-previous:last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pagination .nav-links {
|
|
|
|
|
justify-content: start;
|
|
|
|
|
margin: 0 calc(-0.66 * 16px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pagination .nav-links > * {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
|
2019-10-15 08:19:59 +00:00
|
|
|
|
font-family: var(--font-headings, "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif);
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 1.15rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
font-weight: 600;
|
|
|
|
|
padding-left: calc(0.66 * 16px);
|
|
|
|
|
padding-right: calc(0.66 * 16px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pagination .nav-links .svg-icon {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: middle;
|
2020-06-22 18:02:30 +00:00
|
|
|
|
fill: currentColor;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.nav-links {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
.nav-links .nav-next,
|
|
|
|
|
.nav-links .nav-previous {
|
|
|
|
|
flex: 0 1 auto;
|
|
|
|
|
margin-bottom: inherit;
|
|
|
|
|
margin-top: inherit;
|
|
|
|
|
max-width: calc(50% - (0.5 * 16px));
|
|
|
|
|
}
|
|
|
|
|
.nav-links .nav-next {
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Comments Wrapper
|
|
|
|
|
*/
|
|
|
|
|
.comments-area > * {
|
|
|
|
|
margin-top: 32px;
|
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comments-area > *:first-child {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comments-area > *:last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Comment Title
|
|
|
|
|
*/
|
|
|
|
|
.comments-title {
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 1.74901rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
letter-spacing: normal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comment-reply-title {
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 1.52087rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comment-reply-title small {
|
|
|
|
|
font-size: 1rem;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
|
2019-10-15 08:19:59 +00:00
|
|
|
|
font-family: var(--font-base, "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif);
|
2019-08-15 15:20:03 +00:00
|
|
|
|
letter-spacing: normal;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
line-height: 1.2;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Comment Lists
|
|
|
|
|
*/
|
|
|
|
|
.comment-list {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
border-bottom: 1px solid #CCCCCC;
|
2019-10-04 13:47:07 +00:00
|
|
|
|
padding-left: 0;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
list-style: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comment-list > li {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
border-top: 1px solid #CCCCCC;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
margin-top: 32px;
|
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-15 08:19:59 +00:00
|
|
|
|
.comment-list .children {
|
2019-08-15 15:20:03 +00:00
|
|
|
|
list-style: none;
|
2019-10-04 13:47:07 +00:00
|
|
|
|
padding-left: 16px;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-15 08:19:59 +00:00
|
|
|
|
.comment-list .children > li {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
border-top: 1px solid #CCCCCC;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
margin-top: 32px;
|
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
2019-10-15 08:19:59 +00:00
|
|
|
|
.comment-list .children {
|
2019-10-04 13:47:07 +00:00
|
|
|
|
padding-left: 32px;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Comment Meta
|
|
|
|
|
*/
|
|
|
|
|
.comment-meta {
|
2020-06-02 10:12:41 +00:00
|
|
|
|
margin-right: calc( 32px + (0.5 * 16px));
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-25 11:54:04 +00:00
|
|
|
|
.comment-meta .comment-author {
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
padding-right: 40px;
|
|
|
|
|
max-width: calc(100% - 48px);
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.comment-meta .comment-author {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2019-10-23 22:25:32 +00:00
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
padding-right: 0;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-25 11:54:04 +00:00
|
|
|
|
.comment-meta .comment-author .fn {
|
|
|
|
|
word-wrap: break-word;
|
|
|
|
|
word-break: break-word;
|
|
|
|
|
hyphens: auto;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:20:03 +00:00
|
|
|
|
.comment-meta .comment-author .avatar {
|
|
|
|
|
display: block;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comment-meta .comment-metadata {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #1e1e1e;
|
2019-10-23 22:25:32 +00:00
|
|
|
|
padding-right: 40px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.comment-meta .comment-metadata {
|
|
|
|
|
padding-right: 0;
|
|
|
|
|
}
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comment-meta .comment-metadata a {
|
|
|
|
|
color: currentColor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comment-meta .comment-metadata a:hover, .comment-meta .comment-metadata a:active {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #005177;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.comment-meta {
|
2019-10-25 11:54:04 +00:00
|
|
|
|
margin-right: inherit;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
align-items: center;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
2019-10-25 11:54:04 +00:00
|
|
|
|
.comment-meta .comment-author {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
max-width: inherit;
|
|
|
|
|
flex: 0 1 auto;
|
|
|
|
|
}
|
|
|
|
|
.comment-meta .comment-author .fn {
|
|
|
|
|
padding-right: 16px;
|
|
|
|
|
}
|
|
|
|
|
.comment-meta .comment-author .avatar {
|
|
|
|
|
margin-right: 16px;
|
|
|
|
|
display: inherit;
|
2020-05-15 08:11:00 +00:00
|
|
|
|
position: relative;
|
2019-10-25 11:54:04 +00:00
|
|
|
|
right: inherit;
|
|
|
|
|
}
|
|
|
|
|
.comment-meta .comment-metadata {
|
|
|
|
|
flex: 0 1 auto;
|
|
|
|
|
}
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comment-metadata,
|
|
|
|
|
.reply {
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 0.75614rem;
|
2019-08-15 15:36:12 +00:00
|
|
|
|
line-height: 1.2;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.reply {
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.reply {
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bypostauthor {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.says {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comment-author .fn,
|
|
|
|
|
.pingback .url,
|
|
|
|
|
.trackback .url {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
|
2019-10-15 08:19:59 +00:00
|
|
|
|
font-family: var(--font-headings, "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif);
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Comment body
|
|
|
|
|
*/
|
|
|
|
|
.comment-body {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comment-body > * {
|
|
|
|
|
margin-top: 32px;
|
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comment-content a {
|
|
|
|
|
word-wrap: break-word;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Pingbacks & Trackbacks
|
|
|
|
|
*/
|
|
|
|
|
.pingback .comment-body,
|
|
|
|
|
.trackback .comment-body {
|
|
|
|
|
margin-top: 32px;
|
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Comment Form
|
|
|
|
|
*/
|
|
|
|
|
.comment-respond {
|
|
|
|
|
margin-top: calc(2 * 32px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comment-respond > * {
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comment-respond > *:first-child {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comment-respond > *:last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comment-form > p {
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comment-form > p:first-of-type {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comment-form > p:last-of-type {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comment-form > p label,
|
|
|
|
|
.comment-form > p input[type="email"],
|
|
|
|
|
.comment-form > p input[type="text"],
|
|
|
|
|
.comment-form > p input[type="url"],
|
|
|
|
|
.comment-form > p textarea {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comment-form > p.comment-form-cookies-consent > label {
|
|
|
|
|
width: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.comment-form > p {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
.comment-form > p label {
|
|
|
|
|
width: 25%;
|
|
|
|
|
}
|
|
|
|
|
.comment-form > p.comment-form-cookies-consent {
|
|
|
|
|
margin-left: 25%;
|
|
|
|
|
}
|
|
|
|
|
.comment-form > p.comment-form-cookies-consent > label {
|
|
|
|
|
width: auto;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
.comment-form > p input[type="email"],
|
|
|
|
|
.comment-form > p input[type="text"],
|
|
|
|
|
.comment-form > p input[type="url"],
|
|
|
|
|
.comment-form > p textarea {
|
|
|
|
|
width: 75%;
|
|
|
|
|
}
|
|
|
|
|
.comment-form > p.comment-notes, .comment-form > p.logged-in-as {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Comment Nav
|
|
|
|
|
*/
|
|
|
|
|
.comment-navigation a {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
|
2019-10-15 08:19:59 +00:00
|
|
|
|
font-family: var(--font-headings, "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif);
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 1.15rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.widget-area {
|
|
|
|
|
flex: 0 0 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Site Pages
|
|
|
|
|
* - Page specific styles
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Site Pages
|
|
|
|
|
* - Page specific styles
|
|
|
|
|
*/
|
|
|
|
|
.sticky-post {
|
2019-08-15 15:36:12 +00:00
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
background-color: #0073AA;
|
|
|
|
|
font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
|
2019-10-15 08:19:59 +00:00
|
|
|
|
font-family: var(--font-headings, "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif);
|
2019-08-15 15:20:03 +00:00
|
|
|
|
font-weight: bold;
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 0.86957rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
line-height: 1;
|
|
|
|
|
padding: calc(0.5 * 16px) calc(0.66 * 16px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-title {
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 1.52087rem;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Responsive Logic
|
|
|
|
|
* - Loading this last to respect cascaing rules
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Page Layout Styles & Repsonsive Styles
|
|
|
|
|
*/
|
|
|
|
|
/* Responsive width-content overrides */
|
2020-09-24 16:08:28 +00:00
|
|
|
|
.responsive-max-width, .entry-content > .wp-block-button.aligncenter, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.wp-block-button):not(.entry-attachment),
|
2020-04-17 20:02:53 +00:00
|
|
|
|
.entry-content > *:not(.wp-block-button),
|
2019-09-03 16:59:17 +00:00
|
|
|
|
.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
|
2019-08-15 15:20:03 +00:00
|
|
|
|
max-width: 100%;
|
2019-09-03 16:59:17 +00:00
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: auto;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
2020-09-24 16:08:28 +00:00
|
|
|
|
.responsive-max-width, .entry-content > .wp-block-button.aligncenter, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.wp-block-button):not(.entry-attachment),
|
2020-04-17 20:02:53 +00:00
|
|
|
|
.entry-content > *:not(.wp-block-button),
|
2019-09-03 16:59:17 +00:00
|
|
|
|
.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
|
2019-08-15 15:20:03 +00:00
|
|
|
|
max-width: calc( 560px - 32px);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 640px) {
|
2020-09-24 16:08:28 +00:00
|
|
|
|
.responsive-max-width, .entry-content > .wp-block-button.aligncenter, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.wp-block-button):not(.entry-attachment),
|
2020-04-17 20:02:53 +00:00
|
|
|
|
.entry-content > *:not(.wp-block-button),
|
2019-09-03 16:59:17 +00:00
|
|
|
|
.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
|
2019-08-15 15:20:03 +00:00
|
|
|
|
max-width: calc( 640px - 32px);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 782px) {
|
2020-09-24 16:08:28 +00:00
|
|
|
|
.responsive-max-width, .entry-content > .wp-block-button.aligncenter, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.wp-block-button):not(.entry-attachment),
|
2020-04-17 20:02:53 +00:00
|
|
|
|
.entry-content > *:not(.wp-block-button),
|
2019-09-03 16:59:17 +00:00
|
|
|
|
.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
|
2019-08-15 15:20:03 +00:00
|
|
|
|
max-width: calc( 782px - 32px);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 1024px) {
|
2020-09-24 16:08:28 +00:00
|
|
|
|
.responsive-max-width, .entry-content > .wp-block-button.aligncenter, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.wp-block-button):not(.entry-attachment),
|
2020-04-17 20:02:53 +00:00
|
|
|
|
.entry-content > *:not(.wp-block-button),
|
2019-09-03 16:59:17 +00:00
|
|
|
|
.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
|
2019-08-15 15:20:03 +00:00
|
|
|
|
max-width: calc( 782px - 32px);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 1280px) {
|
2020-09-24 16:08:28 +00:00
|
|
|
|
.responsive-max-width, .entry-content > .wp-block-button.aligncenter, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.wp-block-button):not(.entry-attachment),
|
2020-04-17 20:02:53 +00:00
|
|
|
|
.entry-content > *:not(.wp-block-button),
|
2019-09-03 16:59:17 +00:00
|
|
|
|
.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
|
2019-08-15 15:20:03 +00:00
|
|
|
|
max-width: calc( 782px - 32px);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-24 20:12:36 +00:00
|
|
|
|
.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: auto;
|
2019-09-24 21:16:35 +00:00
|
|
|
|
max-width: 100%;
|
|
|
|
|
/* Matches normal width until desktop breakpoint */
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
2019-09-24 20:12:36 +00:00
|
|
|
|
.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
2019-09-24 21:16:35 +00:00
|
|
|
|
max-width: calc( 560px - 32px);
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 640px) {
|
2019-09-24 20:12:36 +00:00
|
|
|
|
.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
2019-09-24 21:16:35 +00:00
|
|
|
|
max-width: calc( 640px - 32px);
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 782px) {
|
2019-09-24 20:12:36 +00:00
|
|
|
|
.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
2019-09-24 21:16:35 +00:00
|
|
|
|
max-width: calc( 782px - 32px);
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 1024px) {
|
2019-09-24 20:12:36 +00:00
|
|
|
|
.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
2019-08-15 15:20:03 +00:00
|
|
|
|
width: calc(calc( 782px - 32px) + 256px);
|
2019-09-03 16:59:17 +00:00
|
|
|
|
max-width: calc(100% - 32px);
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 1280px) {
|
2019-09-24 20:12:36 +00:00
|
|
|
|
.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
2019-08-15 15:20:03 +00:00
|
|
|
|
width: calc(calc( 782px - 32px) + 256px);
|
2019-09-03 16:59:17 +00:00
|
|
|
|
max-width: calc(100% - 32px);
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-05 14:44:23 +00:00
|
|
|
|
.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
width: calc(100% + 256px);
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: auto;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
2019-09-05 14:44:23 +00:00
|
|
|
|
.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
width: calc(calc( 560px - 32px) + 256px);
|
|
|
|
|
max-width: 100%;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 640px) {
|
2019-09-05 14:44:23 +00:00
|
|
|
|
.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
width: calc(calc( 640px - 32px) + 256px);
|
|
|
|
|
max-width: 100%;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 782px) {
|
2019-09-05 14:44:23 +00:00
|
|
|
|
.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
width: calc(calc( 782px - 32px) + 256px);
|
|
|
|
|
max-width: 100%;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 1024px) {
|
2019-09-05 14:44:23 +00:00
|
|
|
|
.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
width: calc(calc( 782px - 32px) + 256px);
|
|
|
|
|
max-width: 100%;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 1280px) {
|
2019-09-05 14:44:23 +00:00
|
|
|
|
.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
width: calc(calc( 782px - 32px) + 256px);
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
|
|
|
|
|
margin-left: -16px;
|
|
|
|
|
margin-right: -16px;
|
|
|
|
|
width: calc(100% + 32px);
|
2019-09-24 21:16:35 +00:00
|
|
|
|
max-width: calc(100% + 32px);
|
2019-09-03 16:59:17 +00:00
|
|
|
|
/* Letting the box-model do most of the work here. */
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
.entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
|
|
|
|
|
margin-left: inherit;
|
|
|
|
|
margin-right: inherit;
|
|
|
|
|
width: inherit;
|
2019-09-24 21:16:35 +00:00
|
|
|
|
max-width: inherit;
|
2019-09-03 16:59:17 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.entry-content > .alignright {
|
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.entry-content > .alignright {
|
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
margin-right: calc( 0.5 * (100vw - calc( 560px - 32px)));
|
2020-06-30 18:25:34 +00:00
|
|
|
|
max-width: calc( 0.5 * calc( 560px - 32px));
|
|
|
|
|
margin-left: 16px;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 640px) {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
.entry-content > .alignright {
|
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
margin-right: calc( 0.5 * (100vw - calc( 640px - 32px)));
|
2020-06-30 18:25:34 +00:00
|
|
|
|
max-width: calc( 0.5 * calc( 640px - 32px));
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 782px) {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
.entry-content > .alignright {
|
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
|
2020-06-30 18:25:34 +00:00
|
|
|
|
max-width: calc( 0.5 * calc( 782px - 32px));
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 1024px) {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
.entry-content > .alignright {
|
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
|
2020-06-30 18:25:34 +00:00
|
|
|
|
max-width: calc( 0.5 * calc( 782px - 32px));
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 1280px) {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
.entry-content > .alignright {
|
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
|
2020-06-30 18:25:34 +00:00
|
|
|
|
max-width: calc( 0.5 * calc( 782px - 32px));
|
2019-09-03 16:59:17 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-17 20:02:53 +00:00
|
|
|
|
.entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
2020-04-17 20:02:53 +00:00
|
|
|
|
.entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
margin-left: calc( 0.5 * (100vw - calc( 560px - 32px)));
|
2020-06-30 18:25:34 +00:00
|
|
|
|
max-width: calc( 0.5 * calc( 560px - 32px));
|
|
|
|
|
margin-right: 16px;
|
2019-09-03 16:59:17 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 640px) {
|
2020-04-17 20:02:53 +00:00
|
|
|
|
.entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
margin-left: calc( 0.5 * (100vw - calc( 640px - 32px)));
|
2020-06-30 18:25:34 +00:00
|
|
|
|
max-width: calc( 0.5 * calc( 640px - 32px));
|
2019-09-03 16:59:17 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 782px) {
|
2020-04-17 20:02:53 +00:00
|
|
|
|
.entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
|
2020-06-30 18:25:34 +00:00
|
|
|
|
max-width: calc( 0.5 * calc( 782px - 32px));
|
2019-09-03 16:59:17 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 1024px) {
|
2020-04-17 20:02:53 +00:00
|
|
|
|
.entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
|
2020-06-30 18:25:34 +00:00
|
|
|
|
max-width: calc( 0.5 * calc( 782px - 32px));
|
2019-09-03 16:59:17 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 1280px) {
|
2020-04-17 20:02:53 +00:00
|
|
|
|
.entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
|
2019-09-03 16:59:17 +00:00
|
|
|
|
/*rtl:ignore*/
|
|
|
|
|
margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
|
2020-06-30 18:25:34 +00:00
|
|
|
|
max-width: calc( 0.5 * calc( 782px - 32px));
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Vendors
|
|
|
|
|
* - Styles for 3rd party plugins and WP extensions
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Vendors
|
|
|
|
|
* - 3rd-party compatibility styles
|
|
|
|
|
*/
|
2019-09-03 16:59:17 +00:00
|
|
|
|
/**
|
|
|
|
|
* Subscription Form
|
|
|
|
|
*/
|
|
|
|
|
.wp-block-jetpack-subscriptions form > * {
|
|
|
|
|
margin-top: 21.312px;
|
|
|
|
|
margin-bottom: 21.312px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.wp-block-jetpack-subscriptions form > * {
|
|
|
|
|
margin-top: 32px;
|
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-jetpack-subscriptions form > *:first-child {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-jetpack-subscriptions form > *:last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-24 21:16:35 +00:00
|
|
|
|
/**
|
|
|
|
|
* Cookies & Consents Banner
|
|
|
|
|
*/
|
|
|
|
|
body .widget_eu_cookie_law_widget {
|
|
|
|
|
background: transparent;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
padding: 8px;
|
|
|
|
|
right: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body .widget_eu_cookie_law_widget.widget.top {
|
|
|
|
|
bottom: auto;
|
|
|
|
|
top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body .widget_eu_cookie_law_widget #eu-cookie-law {
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
border: 1px solid #CCCCCC;
|
|
|
|
|
color: #1e1e1e;
|
|
|
|
|
font-size: 0.86957rem;
|
|
|
|
|
line-height: inherit;
|
|
|
|
|
padding: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 600px) {
|
|
|
|
|
body .widget_eu_cookie_law_widget #eu-cookie-law {
|
|
|
|
|
padding-bottom: 80px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body .widget_eu_cookie_law_widget #eu-cookie-law.negative {
|
|
|
|
|
background: #1e1e1e;
|
|
|
|
|
border-color: #000000;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept {
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
color: #1e1e1e;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept:hover, body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept:focus, body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept.has-focus {
|
|
|
|
|
background: #DDDDDD;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
|
|
|
|
|
margin: 0;
|
|
|
|
|
margin-left: 32px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 600px) {
|
|
|
|
|
body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
|
|
|
|
|
bottom: 16px;
|
|
|
|
|
left: 16px;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body.admin-bar .widget_eu_cookie_law_widget.widget.top {
|
|
|
|
|
top: 32px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 782px) {
|
|
|
|
|
body.admin-bar .widget_eu_cookie_law_widget.widget.top {
|
|
|
|
|
top: 46px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Mailchimp Subscription Form
|
|
|
|
|
*/
|
|
|
|
|
.wp-block-jetpack-mailchimp p {
|
|
|
|
|
margin-top: 21.312px;
|
|
|
|
|
margin-bottom: 21.312px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.wp-block-jetpack-mailchimp p {
|
|
|
|
|
margin-top: 32px;
|
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-jetpack-mailchimp p:first-child {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-jetpack-mailchimp p:last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-20 06:00:55 +00:00
|
|
|
|
.wp-block-jetpack-mailchimp input[type="email"] {
|
2019-09-24 21:16:35 +00:00
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#wp-block-jetpack-mailchimp_consent-text {
|
|
|
|
|
font-size: 0.86957rem;
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-31 16:21:58 +00:00
|
|
|
|
/**
|
|
|
|
|
* Business Hours
|
|
|
|
|
*/
|
|
|
|
|
.jetpack-business-hours dd {
|
|
|
|
|
padding-left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-18 20:30:51 +00:00
|
|
|
|
/**
|
|
|
|
|
* Layout Grid
|
|
|
|
|
*/
|
|
|
|
|
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > * {
|
|
|
|
|
margin-top: 21.312px;
|
|
|
|
|
margin-bottom: 21.312px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > * {
|
|
|
|
|
margin-top: 32px;
|
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > *:first-child {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > *:last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-09 06:18:31 +00:00
|
|
|
|
/**
|
|
|
|
|
* Map Block
|
|
|
|
|
*/
|
|
|
|
|
.mapboxgl-popup-close-button {
|
|
|
|
|
padding: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-jetpack-map .mapboxgl-popup h3 {
|
|
|
|
|
padding-top: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-15 22:36:17 +00:00
|
|
|
|
/**
|
|
|
|
|
* Related Posts
|
|
|
|
|
*/
|
|
|
|
|
.entry-content #jp-relatedposts {
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:20:03 +00:00
|
|
|
|
/**
|
|
|
|
|
* Child Theme Extra Styles
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Extra Child Theme Styles
|
|
|
|
|
*/
|
|
|
|
|
a {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:39:33 +00:00
|
|
|
|
/**
|
|
|
|
|
* Wide Header & Footer
|
|
|
|
|
*/
|
2019-08-15 17:50:17 +00:00
|
|
|
|
#masthead {
|
2019-08-15 15:39:33 +00:00
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
padding-bottom: 0;
|
2019-08-15 17:50:17 +00:00
|
|
|
|
position: relative;
|
2019-09-15 18:00:20 +00:00
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
#masthead {
|
|
|
|
|
width: calc( 560px - 32px);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 640px) {
|
|
|
|
|
#masthead {
|
|
|
|
|
width: calc( 640px - 32px);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 782px) {
|
|
|
|
|
#masthead {
|
|
|
|
|
width: calc( 782px - 32px);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 1024px) {
|
|
|
|
|
#masthead {
|
2019-09-24 20:12:36 +00:00
|
|
|
|
width: calc(100% - 64px);
|
2019-09-15 18:00:20 +00:00
|
|
|
|
}
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:39:33 +00:00
|
|
|
|
/**
|
|
|
|
|
* CSS-grid Desktop Menu
|
|
|
|
|
*/
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.site-header {
|
|
|
|
|
align-items: center;
|
|
|
|
|
display: grid;
|
2019-09-15 18:00:20 +00:00
|
|
|
|
grid-template-columns: 66% auto;
|
2019-08-15 15:39:33 +00:00
|
|
|
|
grid-template-rows: auto;
|
2019-09-05 14:44:23 +00:00
|
|
|
|
grid-auto-flow: row;
|
2019-08-15 15:39:33 +00:00
|
|
|
|
grid-column-gap: 16px;
|
2019-09-15 18:00:20 +00:00
|
|
|
|
grid-template-areas: "site-branding site-branding" "site-description site-description" "main-navigation social-navigation";
|
2019-08-15 15:39:33 +00:00
|
|
|
|
}
|
|
|
|
|
.site-header:before, .site-header:after {
|
|
|
|
|
content: none;
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
.site-header > * {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
2019-09-05 14:44:23 +00:00
|
|
|
|
.site-header .site-branding {
|
2019-09-15 18:00:20 +00:00
|
|
|
|
align-self: baseline;
|
2019-09-05 14:44:23 +00:00
|
|
|
|
grid-area: site-branding;
|
2019-09-15 18:00:20 +00:00
|
|
|
|
flex: 0 1 25%;
|
2019-09-05 14:44:23 +00:00
|
|
|
|
}
|
2019-08-15 15:39:33 +00:00
|
|
|
|
.site-header .site-logo {
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
.site-header .site-title + .site-description {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
.site-header .site-description {
|
2019-09-15 18:00:20 +00:00
|
|
|
|
align-self: baseline;
|
2019-08-15 15:39:33 +00:00
|
|
|
|
grid-area: site-description;
|
|
|
|
|
}
|
|
|
|
|
.site-header .main-navigation {
|
2019-09-05 14:44:23 +00:00
|
|
|
|
align-self: flex-start;
|
2019-09-15 18:00:20 +00:00
|
|
|
|
margin-bottom: 32px;
|
2019-08-15 15:39:33 +00:00
|
|
|
|
grid-area: main-navigation;
|
2019-09-05 14:44:23 +00:00
|
|
|
|
justify-self: flex-start;
|
2019-08-15 15:39:33 +00:00
|
|
|
|
}
|
|
|
|
|
.site-header .main-navigation > div > ul {
|
2019-09-05 14:44:23 +00:00
|
|
|
|
justify-content: flex-start;
|
2019-08-15 15:39:33 +00:00
|
|
|
|
margin-left: -8px;
|
|
|
|
|
margin-right: -8px;
|
|
|
|
|
}
|
|
|
|
|
.site-header .main-navigation > div > ul > li > a {
|
2019-09-05 14:44:23 +00:00
|
|
|
|
padding: 8px;
|
2019-08-15 15:39:33 +00:00
|
|
|
|
}
|
|
|
|
|
.site-header .main-navigation > div > ul > .menu-item-has-children > a::after {
|
|
|
|
|
font-size: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
.site-header .main-navigation > div > ul > li:hover > ul,
|
2021-12-21 08:55:48 +00:00
|
|
|
|
.site-header .main-navigation > div > ul > li[focus-within] > ul,
|
2019-08-15 15:39:33 +00:00
|
|
|
|
.site-header .main-navigation > div > ul > li.current-menu-item > ul {
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
2021-12-21 08:55:48 +00:00
|
|
|
|
.site-header .main-navigation > div > ul > li:hover > ul,
|
|
|
|
|
.site-header .main-navigation > div > ul > li:focus-within > ul,
|
|
|
|
|
.site-header .main-navigation > div > ul > li.current-menu-item > ul {
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
.site-header .main-navigation > div > ul > li:hover > ul:before,
|
|
|
|
|
.site-header .main-navigation > div > ul > li[focus-within] > ul:before,
|
|
|
|
|
.site-header .main-navigation > div > ul > li.current-menu-item > ul:before {
|
|
|
|
|
border-bottom: 8px solid #0073AA;
|
|
|
|
|
border-left: 8px solid transparent;
|
|
|
|
|
border-right: 8px solid transparent;
|
|
|
|
|
content: "";
|
|
|
|
|
display: block;
|
|
|
|
|
margin-left: 16px;
|
|
|
|
|
width: 16px;
|
|
|
|
|
}
|
2019-08-15 15:39:33 +00:00
|
|
|
|
.site-header .main-navigation > div > ul > li:hover > ul:before,
|
2021-12-21 08:55:48 +00:00
|
|
|
|
.site-header .main-navigation > div > ul > li:focus-within > ul:before,
|
2019-08-15 15:39:33 +00:00
|
|
|
|
.site-header .main-navigation > div > ul > li.current-menu-item > ul:before {
|
|
|
|
|
border-bottom: 8px solid #0073AA;
|
|
|
|
|
border-left: 8px solid transparent;
|
|
|
|
|
border-right: 8px solid transparent;
|
|
|
|
|
content: "";
|
|
|
|
|
display: block;
|
|
|
|
|
margin-left: 16px;
|
|
|
|
|
width: 16px;
|
|
|
|
|
}
|
|
|
|
|
.site-header .main-navigation > div > ul > li:hover li > a,
|
2021-12-21 08:55:48 +00:00
|
|
|
|
.site-header .main-navigation > div > ul > li[focus-within] li > a,
|
2019-08-15 15:39:33 +00:00
|
|
|
|
.site-header .main-navigation > div > ul > li.current-menu-item li > a {
|
|
|
|
|
background: #0073AA;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
}
|
2021-12-21 08:55:48 +00:00
|
|
|
|
.site-header .main-navigation > div > ul > li:hover li > a,
|
|
|
|
|
.site-header .main-navigation > div > ul > li:focus-within li > a,
|
|
|
|
|
.site-header .main-navigation > div > ul > li.current-menu-item li > a {
|
|
|
|
|
background: #0073AA;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
}
|
|
|
|
|
.site-header .main-navigation > div > ul > li:hover li:hover > a,
|
|
|
|
|
.site-header .main-navigation > div > ul > li:hover li.focus > a,
|
|
|
|
|
.site-header .main-navigation > div > ul > li:hover li.current-menu-item > a,
|
|
|
|
|
.site-header .main-navigation > div > ul > li[focus-within] li:hover > a,
|
|
|
|
|
.site-header .main-navigation > div > ul > li[focus-within] li.focus > a,
|
|
|
|
|
.site-header .main-navigation > div > ul > li[focus-within] li.current-menu-item > a,
|
|
|
|
|
.site-header .main-navigation > div > ul > li.current-menu-item li:hover > a,
|
|
|
|
|
.site-header .main-navigation > div > ul > li.current-menu-item li.focus > a,
|
|
|
|
|
.site-header .main-navigation > div > ul > li.current-menu-item li.current-menu-item > a {
|
|
|
|
|
background: #005177;
|
|
|
|
|
}
|
2019-08-15 15:39:33 +00:00
|
|
|
|
.site-header .main-navigation > div > ul > li:hover li:hover > a,
|
|
|
|
|
.site-header .main-navigation > div > ul > li:hover li.focus > a,
|
|
|
|
|
.site-header .main-navigation > div > ul > li:hover li.current-menu-item > a,
|
2021-12-21 08:55:48 +00:00
|
|
|
|
.site-header .main-navigation > div > ul > li:focus-within li:hover > a,
|
|
|
|
|
.site-header .main-navigation > div > ul > li:focus-within li.focus > a,
|
|
|
|
|
.site-header .main-navigation > div > ul > li:focus-within li.current-menu-item > a,
|
2019-08-15 15:39:33 +00:00
|
|
|
|
.site-header .main-navigation > div > ul > li.current-menu-item li:hover > a,
|
|
|
|
|
.site-header .main-navigation > div > ul > li.current-menu-item li.focus > a,
|
|
|
|
|
.site-header .main-navigation > div > ul > li.current-menu-item li.current-menu-item > a {
|
|
|
|
|
background: #005177;
|
|
|
|
|
}
|
|
|
|
|
.site-header .social-navigation {
|
2019-09-05 14:44:23 +00:00
|
|
|
|
line-height: 1;
|
|
|
|
|
align-self: flex-start;
|
2019-08-15 15:39:33 +00:00
|
|
|
|
grid-area: social-navigation;
|
|
|
|
|
justify-self: flex-end;
|
|
|
|
|
}
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-24 20:12:36 +00:00
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.site-header .site-title {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
}
|
|
|
|
|
.site-header .site-description {
|
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
}
|
|
|
|
|
.site-header[class*="navigation"] {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-15 18:00:20 +00:00
|
|
|
|
@media only screen and (min-width: 1024px) {
|
|
|
|
|
.site-header {
|
2019-09-24 20:12:36 +00:00
|
|
|
|
grid-template-columns: calc( 0.5 * (100vw - calc( 782px - 32px) - 128px)) auto calc( 0.5 * (100vw - calc( 782px - 32px) - 128px));
|
2019-09-15 18:00:20 +00:00
|
|
|
|
grid-template-rows: auto;
|
|
|
|
|
grid-auto-flow: row;
|
2019-09-24 20:12:36 +00:00
|
|
|
|
grid-column-gap: 32px;
|
2019-09-20 21:38:17 +00:00
|
|
|
|
grid-template-areas: ". main-navigation social-navigation" "site-branding site-description social-navigation";
|
2019-09-15 18:00:20 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:39:33 +00:00
|
|
|
|
.social-navigation > div > ul {
|
|
|
|
|
flex-wrap: wrap;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:39:33 +00:00
|
|
|
|
/**
|
|
|
|
|
* Site Title
|
|
|
|
|
*/
|
2019-09-20 21:38:17 +00:00
|
|
|
|
.site-title {
|
2019-09-24 21:08:46 +00:00
|
|
|
|
font-weight: bold;
|
|
|
|
|
word-wrap: break-word;
|
2019-09-20 21:38:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 15:39:33 +00:00
|
|
|
|
.site-description {
|
2019-08-15 17:25:10 +00:00
|
|
|
|
color: #000000;
|
2019-09-24 20:12:36 +00:00
|
|
|
|
line-height: 1.2;
|
2019-10-16 09:20:18 +00:00
|
|
|
|
font-family: "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;
|
2019-10-18 10:32:35 +00:00
|
|
|
|
font-family: var(--font-base, "Crimson Text", "Baskerville Old Face", Garamond, "Times New Roman", serif);
|
2019-08-15 15:39:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-title + .site-description {
|
|
|
|
|
margin-top: -16px;
|
2019-08-15 15:20:03 +00:00
|
|
|
|
}
|
2019-08-15 17:25:10 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Content
|
|
|
|
|
*/
|
|
|
|
|
.site-main > article > .entry-header {
|
2019-09-20 16:46:23 +00:00
|
|
|
|
margin: 48px 0 16px;
|
2019-08-15 17:25:10 +00:00
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-19 14:59:52 +00:00
|
|
|
|
.hide-homepage-header .site-main > article > .entry-header {
|
|
|
|
|
margin: 16px 0 16px;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 17:25:10 +00:00
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.site-main > article > .entry-header {
|
|
|
|
|
margin: 96px auto 32px;
|
|
|
|
|
}
|
2021-01-19 14:59:52 +00:00
|
|
|
|
.hide-homepage-header .site-main > article > .entry-header {
|
|
|
|
|
margin: 32px auto 32px;
|
|
|
|
|
}
|
2019-08-15 17:25:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-20 16:46:23 +00:00
|
|
|
|
.site-main .page-header {
|
|
|
|
|
margin-top: 48px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (min-width: 560px) {
|
|
|
|
|
.site-main .page-header {
|
|
|
|
|
margin-top: 96px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-24 20:33:29 +00:00
|
|
|
|
.a8c-posts-list-item__featured span,
|
2019-09-20 22:07:52 +00:00
|
|
|
|
.sticky-post {
|
|
|
|
|
color: #0073AA;
|
|
|
|
|
border: 1px solid currentColor;
|
|
|
|
|
background: transparent;
|
|
|
|
|
padding-bottom: 3px;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 17:25:10 +00:00
|
|
|
|
.entry-title {
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 2.31306rem;
|
2019-08-15 17:25:10 +00:00
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Blocks
|
|
|
|
|
*/
|
|
|
|
|
.entry .entry-content .wp-block-media-text {
|
|
|
|
|
background: #0d1b24;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-20 20:48:56 +00:00
|
|
|
|
.entry .entry-content .wp-block-media-text.is-style-inset-borders:before {
|
|
|
|
|
border-color: #FFFFFF;
|
2019-08-15 17:25:10 +00:00
|
|
|
|
}
|
2019-09-15 18:00:20 +00:00
|
|
|
|
|
2020-07-28 21:00:39 +00:00
|
|
|
|
.entry-content [class*="__inner-container"] a:not(.wp-block-button__link) {
|
2019-09-24 20:33:29 +00:00
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-28 21:00:39 +00:00
|
|
|
|
.entry-content [class*="__inner-container"] a:not(.wp-block-button__link):hover {
|
2019-09-24 21:19:00 +00:00
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-20 02:30:17 +00:00
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .cat-links a,
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles article .entry-meta a {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles.image-alignbehind article .cat-links a:hover,
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles.image-alignbehind article .entry-title a:hover,
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles.image-alignbehind article .more-link:hover,
|
|
|
|
|
.wp-block-newspack-blocks-homepage-articles.image-alignbehind article .entry-meta a:hover {
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a,
|
|
|
|
|
.has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .more-link,
|
|
|
|
|
[class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a,
|
|
|
|
|
[class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .more-link,
|
|
|
|
|
[style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-title a,
|
|
|
|
|
[style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .more-link {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,
|
|
|
|
|
.has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,
|
|
|
|
|
.has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover,
|
|
|
|
|
[class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,
|
|
|
|
|
[class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,
|
|
|
|
|
[class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover,
|
|
|
|
|
[style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,
|
|
|
|
|
[style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,
|
|
|
|
|
[style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover {
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-15 18:00:20 +00:00
|
|
|
|
/**
|
|
|
|
|
* Footer
|
|
|
|
|
*/
|
|
|
|
|
.footer-navigation .footer-menu a {
|
2019-09-20 22:07:52 +00:00
|
|
|
|
font-size: 0.75614rem;
|
2019-09-15 18:00:20 +00:00
|
|
|
|
}
|
2020-12-04 23:15:35 +00:00
|
|
|
|
|
|
|
|
|
@media only screen and (max-width: 559px) {
|
2020-12-14 09:24:14 +00:00
|
|
|
|
.mobile-nav-side .has-menu {
|
2020-12-10 05:54:32 +00:00
|
|
|
|
position: relative;
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-gap: 2px;
|
2020-12-14 09:24:14 +00:00
|
|
|
|
grid-template-areas: "site-logo site-logo" "social-navigation main-navigation";
|
2020-12-04 23:15:35 +00:00
|
|
|
|
}
|
2020-12-14 09:24:14 +00:00
|
|
|
|
.mobile-nav-side .has-menu:before, .mobile-nav-side .has-menu:after {
|
|
|
|
|
content: none;
|
|
|
|
|
}
|
|
|
|
|
.mobile-nav-side .has-menu.has-title-and-tagline {
|
|
|
|
|
grid-template-areas: "site-logo site-logo" "site-title main-navigation" "site-description main-navigation" "social-navigation social-navigation";
|
2020-12-10 05:54:32 +00:00
|
|
|
|
}
|
2020-12-14 09:24:14 +00:00
|
|
|
|
.mobile-nav-side .has-menu.has-title-and-tagline .site-title {
|
|
|
|
|
grid-area: site-title;
|
2020-12-10 05:54:32 +00:00
|
|
|
|
align-self: end;
|
|
|
|
|
}
|
2020-12-14 09:24:14 +00:00
|
|
|
|
.mobile-nav-side .has-menu.has-title-and-tagline .site-description {
|
|
|
|
|
grid-area: site-description;
|
2020-12-10 05:54:32 +00:00
|
|
|
|
align-self: start;
|
|
|
|
|
}
|
2020-12-14 09:24:14 +00:00
|
|
|
|
.mobile-nav-side .has-menu > *:not(.site-logo) {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
.mobile-nav-side .has-menu .site-logo {
|
|
|
|
|
grid-area: site-logo;
|
|
|
|
|
justify-self: center;
|
|
|
|
|
margin: 8px 0;
|
|
|
|
|
}
|
|
|
|
|
.mobile-nav-side .has-menu .social-navigation {
|
|
|
|
|
grid-area: social-navigation;
|
|
|
|
|
align-self: center;
|
|
|
|
|
}
|
|
|
|
|
.mobile-nav-side .has-menu .main-navigation {
|
|
|
|
|
grid-area: main-navigation;
|
2020-12-10 05:54:32 +00:00
|
|
|
|
}
|
|
|
|
|
.mobile-nav-side .site-header #site-navigation.main-navigation {
|
|
|
|
|
margin: 0;
|
|
|
|
|
justify-self: end;
|
2020-12-16 10:16:26 +00:00
|
|
|
|
display: flex;
|
2020-12-16 11:38:28 +00:00
|
|
|
|
align-items: flex-start;
|
2020-12-16 10:16:26 +00:00
|
|
|
|
justify-content: end;
|
2020-12-14 09:24:14 +00:00
|
|
|
|
}
|
2020-12-16 21:20:49 +00:00
|
|
|
|
.mobile-nav-side .site-header #site-navigation.main-navigation #woocommerce-toggle:checked + label,
|
2020-12-15 14:01:32 +00:00
|
|
|
|
.mobile-nav-side .site-header #site-navigation.main-navigation #toggle:checked + label {
|
|
|
|
|
position: fixed;
|
2020-12-16 21:20:49 +00:00
|
|
|
|
top: 18px;
|
2020-12-15 14:01:32 +00:00
|
|
|
|
right: 16px;
|
|
|
|
|
z-index: 20000;
|
2020-12-16 21:20:49 +00:00
|
|
|
|
margin-right: 0;
|
2020-12-15 14:01:32 +00:00
|
|
|
|
}
|
2020-12-14 09:24:14 +00:00
|
|
|
|
.mobile-nav-side .site-header #site-navigation.main-navigation #toggle-menu {
|
2020-12-16 10:16:26 +00:00
|
|
|
|
order: 2;
|
2020-12-14 09:24:14 +00:00
|
|
|
|
grid-area: menu-toggle;
|
|
|
|
|
}
|
|
|
|
|
.mobile-nav-side .site-header #site-navigation.main-navigation #toggle-cart[for="woocommerce-toggle"] {
|
2020-12-16 10:16:26 +00:00
|
|
|
|
order: 1;
|
2020-12-14 09:24:14 +00:00
|
|
|
|
grid-area: cart-toggle;
|
2020-12-16 10:16:26 +00:00
|
|
|
|
margin-right: 8px;
|
2020-12-10 05:54:32 +00:00
|
|
|
|
}
|
2020-12-10 19:07:29 +00:00
|
|
|
|
.mobile-nav-side .site-header #site-navigation.main-navigation #toggle-cart[for="woocommerce-toggle"].button,
|
2020-12-10 05:54:32 +00:00
|
|
|
|
.mobile-nav-side .site-header #site-navigation.main-navigation #toggle-menu {
|
2020-12-16 22:12:27 +00:00
|
|
|
|
line-height: 1.55;
|
2020-12-10 05:54:32 +00:00
|
|
|
|
padding: 12px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
text-align: center;
|
2020-12-10 19:07:29 +00:00
|
|
|
|
justify-self: end;
|
2020-12-10 05:54:32 +00:00
|
|
|
|
font-size: 0.75614rem;
|
|
|
|
|
}
|
2020-12-10 19:07:29 +00:00
|
|
|
|
.mobile-nav-side .site-header #site-navigation.main-navigation #toggle-cart[for="woocommerce-toggle"].button svg {
|
|
|
|
|
margin-top: -2px;
|
|
|
|
|
}
|
2020-12-16 21:20:49 +00:00
|
|
|
|
.mobile-nav-side .site-header #site-navigation.main-navigation .woocommerce-menu-container,
|
2020-12-14 13:10:11 +00:00
|
|
|
|
.mobile-nav-side .site-header #site-navigation.main-navigation > div {
|
2020-12-14 09:24:14 +00:00
|
|
|
|
grid-area: dropdown-menu;
|
2020-12-16 21:20:49 +00:00
|
|
|
|
margin-top: 16px;
|
2020-12-15 14:01:32 +00:00
|
|
|
|
position: fixed;
|
2020-12-10 05:54:32 +00:00
|
|
|
|
z-index: 100;
|
2020-12-15 14:01:32 +00:00
|
|
|
|
top: 0;
|
|
|
|
|
bottom: 0;
|
2020-12-14 10:29:41 +00:00
|
|
|
|
right: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
background: #FFFFFF;
|
2020-12-15 14:01:32 +00:00
|
|
|
|
padding: 48px 16px 8px;
|
2020-12-16 10:16:26 +00:00
|
|
|
|
overflow-y: auto;
|
|
|
|
|
white-space: normal;
|
2020-12-04 23:15:35 +00:00
|
|
|
|
}
|
2020-12-15 14:01:32 +00:00
|
|
|
|
.mobile-nav-side.has-marketing-bar .site-header #site-navigation.main-navigation > div {
|
|
|
|
|
top: 45px;
|
|
|
|
|
}
|
2020-12-17 09:33:59 +00:00
|
|
|
|
.mobile-nav-side.has-marketing-bar .site-header #site-navigation.main-navigation #woocommerce-toggle:checked + label,
|
2020-12-15 14:01:32 +00:00
|
|
|
|
.mobile-nav-side.has-marketing-bar .site-header #site-navigation.main-navigation #toggle:checked + label {
|
|
|
|
|
top: 61px;
|
|
|
|
|
}
|
|
|
|
|
.mobile-nav-side.admin-bar .site-header #site-navigation.main-navigation > div {
|
|
|
|
|
top: 46px;
|
|
|
|
|
}
|
2020-12-17 09:33:59 +00:00
|
|
|
|
.mobile-nav-side.admin-bar .site-header #site-navigation.main-navigation #woocommerce-toggle:checked + label,
|
2020-12-15 14:01:32 +00:00
|
|
|
|
.mobile-nav-side.admin-bar .site-header #site-navigation.main-navigation #toggle:checked + label {
|
2020-12-16 23:11:35 +00:00
|
|
|
|
top: 64px;
|
2020-12-15 14:01:32 +00:00
|
|
|
|
}
|
|
|
|
|
.mobile-nav-side.admin-bar.has-marketing-bar .site-header #site-navigation.main-navigation > div {
|
|
|
|
|
top: 91px;
|
|
|
|
|
}
|
2020-12-17 09:33:59 +00:00
|
|
|
|
.mobile-nav-side.admin-bar.has-marketing-bar .site-header #site-navigation.main-navigation #woocommerce-toggle:checked + label,
|
2020-12-15 14:01:32 +00:00
|
|
|
|
.mobile-nav-side.admin-bar.has-marketing-bar .site-header #site-navigation.main-navigation #toggle:checked + label {
|
|
|
|
|
top: 107px;
|
|
|
|
|
}
|
2020-12-16 09:15:28 +00:00
|
|
|
|
.lock-scrolling .site {
|
|
|
|
|
left: 0;
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
position: fixed;
|
|
|
|
|
right: 0;
|
|
|
|
|
}
|
2020-12-04 23:15:35 +00:00
|
|
|
|
}
|
2020-12-07 21:48:04 +00:00
|
|
|
|
|
|
|
|
|
@media only screen and (max-width: 559px) {
|
2020-12-14 09:24:14 +00:00
|
|
|
|
.mobile-nav-side .site-header.has-menu .site-branding {
|
2020-12-16 11:38:28 +00:00
|
|
|
|
display: contents;
|
2020-12-14 09:24:14 +00:00
|
|
|
|
}
|
2020-12-07 21:48:04 +00:00
|
|
|
|
.mobile-nav-side .main-navigation .dropdown-icon {
|
|
|
|
|
/* This is fixed the issue when the button changes widths */
|
|
|
|
|
font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma;
|
|
|
|
|
}
|
2020-12-16 22:12:27 +00:00
|
|
|
|
.mobile-nav-side .site-description.site-description {
|
|
|
|
|
font-size: 19px;
|
|
|
|
|
}
|
2020-12-07 21:48:04 +00:00
|
|
|
|
}
|