|
@@ -1,6 +1,202 @@
|
|
/**
|
|
/**
|
|
* These styles should be loaded by the Block Editor only
|
|
* These styles should be loaded by the Block Editor only
|
|
*/
|
|
*/
|
|
|
|
+body {
|
|
|
|
+ /* Globals */
|
|
|
|
+ /* Font Family */
|
|
|
|
+ --global--font-primary: var(--font-headings, 'Playfair Display', Georgia, Times, serif);
|
|
|
|
+ --global--font-secondary: var(--font-base, 'Fira Sans', Helvetica, Arial, sans-serif);
|
|
|
|
+ --global--font-code: monospace, monospace;
|
|
|
|
+ --global--font-ui: var(--font-base, var(--global--font-secondary));
|
|
|
|
+ /* Font Size */
|
|
|
|
+ --global--font-size-root: 18px;
|
|
|
|
+ --global--font-size-ratio: 1.2;
|
|
|
|
+ --global--font-size-base: 1em;
|
|
|
|
+ --global--font-size-xs: 14px;
|
|
|
|
+ --global--font-size-sm: 16px;
|
|
|
|
+ --global--font-size-md: 18px;
|
|
|
|
+ --global--font-size-lg: 24px;
|
|
|
|
+ --global--font-size-xl: 28px;
|
|
|
|
+ --global--font-size-xxl: 32px;
|
|
|
|
+ --global--font-size-xxxl: 48px;
|
|
|
|
+ --global--letter-spacing: normal;
|
|
|
|
+ /* Line Height */
|
|
|
|
+ --global--line-height-base: 1;
|
|
|
|
+ --global--line-height-body: 1.7;
|
|
|
|
+ --global--line-height-heading: 1.3;
|
|
|
|
+ /* Colors */
|
|
|
|
+ --global--color-primary: #000000;
|
|
|
|
+ --global--color-secondary: #3C8067;
|
|
|
|
+ --global--color-primary-hover: var( --global--color-secondary );
|
|
|
|
+ --global--color-secondary-hover: #336D58;
|
|
|
|
+ --global--color-black: black;
|
|
|
|
+ --global--color-white: white;
|
|
|
|
+ --global--color-foreground: #333333;
|
|
|
|
+ --global--color-foreground-light: #444444;
|
|
|
|
+ --global--color-foreground-dark: #000000;
|
|
|
|
+ --global--color-background: #FFFFFF;
|
|
|
|
+ --global--color-tertiary: #FAFBF6;
|
|
|
|
+ --global--color-background-dark: #DDDDDD;
|
|
|
|
+ --global--color-border: #EFEFEF;
|
|
|
|
+ --global--color-text-selection: #EBF2F0;
|
|
|
|
+ --global--color-alert-success: yellowgreen;
|
|
|
|
+ --global--color-alert-info: skyblue;
|
|
|
|
+ --global--color-alert-warning: gold;
|
|
|
|
+ --global--color-alert-error: salmon;
|
|
|
|
+ /* Spacing */
|
|
|
|
+ --global--spacing-unit: 20px;
|
|
|
|
+ --global--spacing-measure: unset;
|
|
|
|
+ --global--spacing-horizontal: 25px;
|
|
|
|
+ --global--spacing-vertical: 30px;
|
|
|
|
+ /* Elevation */
|
|
|
|
+ --global--elevation: 1px 1px 3px 0px rgba( 0, 0, 0, 0.2 );
|
|
|
|
+ /* Other */
|
|
|
|
+ --global--border-radius-sm: 9px;
|
|
|
|
+ --global--border-radius-md: 13.5px;
|
|
|
|
+ --global--border-radius-lg: 18px;
|
|
|
|
+ --global--border-radius-pill: 180px;
|
|
|
|
+ --global--border-radius-none: 0;
|
|
|
|
+ /* Elements */
|
|
|
|
+ --form--font-family: var(--global--font-secondary);
|
|
|
|
+ --form--font-size: var(--global--font-size-md);
|
|
|
|
+ --form--line-height: var(--global--line-height-body);
|
|
|
|
+ --form--color-text: var(--global--color-foreground);
|
|
|
|
+ --form--border-color: var(--global--color-border);
|
|
|
|
+ --form--border-width: 2px;
|
|
|
|
+ --form--border-radius: 0;
|
|
|
|
+ --form--spacing-unit: calc(0.5 * var(--global--spacing-unit));
|
|
|
|
+ /* Blocks */
|
|
|
|
+ --button--color-text: var(--global--color-background);
|
|
|
|
+ --button--color-text-hover: var(--button--color-text);
|
|
|
|
+ --button--color-text-active: var(--button--color-text);
|
|
|
|
+ --button--color-background: var(--global--color-secondary);
|
|
|
|
+ --button--color-background-hover: var(--global--color-secondary-hover);
|
|
|
|
+ --button--color-background-active: var(--global--color-primary);
|
|
|
|
+ --button--font-family: var(--global--font-ui);
|
|
|
|
+ --button--font-size: var(--global--font-size-base);
|
|
|
|
+ --button--font-weight: normal;
|
|
|
|
+ --button--line-height: 1;
|
|
|
|
+ --button--border-width: 2px;
|
|
|
|
+ --button--border-radius: 4px;
|
|
|
|
+ --button--padding-vertical: calc(var(--global--spacing-horizontal) - var(--button--border-width));
|
|
|
|
+ --button--padding-horizontal: var(--global--spacing-horizontal);
|
|
|
|
+ --cover--height: calc( 15 * var(--global--spacing-vertical) );
|
|
|
|
+ --cover--color-foreground: var(--global--color-foreground-dark);
|
|
|
|
+ --cover--color-background: var(--global--color-tertiary);
|
|
|
|
+ --heading--font-family: var(--global--font-primary);
|
|
|
|
+ --heading--line-height: 1.3;
|
|
|
|
+ --heading--font-size-h6: var(--global--font-size-base);
|
|
|
|
+ --heading--font-size-h5: var(--global--font-size-md);
|
|
|
|
+ --heading--font-size-h4: var(--global--font-size-lg);
|
|
|
|
+ --heading--font-size-h3: var(--global--font-size-xl);
|
|
|
|
+ --heading--font-size-h2: var(--global--font-size-xxl);
|
|
|
|
+ --heading--font-size-h1: var(--global--font-size-xxxl);
|
|
|
|
+ --heading--letter-spacing-h6: var(--global--letter-spacing);
|
|
|
|
+ --heading--letter-spacing-h5: var(--global--letter-spacing);
|
|
|
|
+ --heading--letter-spacing-h4: var(--global--letter-spacing);
|
|
|
|
+ --heading--letter-spacing-h3: var(--global--letter-spacing);
|
|
|
|
+ --heading--letter-spacing-h2: var(--global--letter-spacing);
|
|
|
|
+ --heading--letter-spacing-h1: var(--global--letter-spacing);
|
|
|
|
+ --heading--line-height-h6: 1.3;
|
|
|
|
+ --heading--line-height-h5: 1.3;
|
|
|
|
+ --heading--line-height-h4: 1.3;
|
|
|
|
+ --heading--line-height-h3: var(--heading--line-height);
|
|
|
|
+ --heading--line-height-h2: var(--heading--line-height);
|
|
|
|
+ --heading--line-height-h1: var(--heading--line-height);
|
|
|
|
+ --heading--font-weight: normal;
|
|
|
|
+ --heading--font-weight-strong: 600;
|
|
|
|
+ --latest-posts--title-font-family: var(--heading--font-family);
|
|
|
|
+ --latest-posts--title-font-size: var(--heading--font-size-h3);
|
|
|
|
+ --latest-posts--description-font-family: var(--global--font-secondary);
|
|
|
|
+ --latest-posts--description-font-size: var(--global--font-size-sm);
|
|
|
|
+ --layout-grid--gutter-none: 0px;
|
|
|
|
+ --layout-grid--gutter-small: calc( var(--global--spacing-unit) / 2);
|
|
|
|
+ --layout-grid--gutter-medium: var(--global--spacing-unit);
|
|
|
|
+ --layout-grid--gutter-large: calc( var(--global--spacing-unit) * 2);
|
|
|
|
+ --layout-grid--gutter-huge: calc( var(--global--spacing-unit) * 3);
|
|
|
|
+ --layout-grid--background-offset: calc( var(--global--spacing-unit));
|
|
|
|
+ --list--font-family: var(--global--font-secondary);
|
|
|
|
+ --definition-term--font-family: var(--global--font-primary);
|
|
|
|
+ --pullquote--font-family: var(--global--font-primary);
|
|
|
|
+ --pullquote--font-size: var(--heading--font-size-h2);
|
|
|
|
+ --pullquote--font-style: italic;
|
|
|
|
+ --pullquote--letter-spacing: var(--heading--letter-spacing-h4);
|
|
|
|
+ --pullquote--line-height: var(--global--line-height-heading);
|
|
|
|
+ --pullquote--border-width: 0;
|
|
|
|
+ --pullquote--border-color: transparent;
|
|
|
|
+ --pullquote--color-foreground: var(--global--color-foreground);
|
|
|
|
+ --pullquote--color-background: var(--global--color-background);
|
|
|
|
+ --quote--border-color: var(--global--color-secondary);
|
|
|
|
+ --quote--border-width: 1px;
|
|
|
|
+ --quote--font-family: var(--global--font-secondary);
|
|
|
|
+ --quote--font-size: var(--global--font-size-md);
|
|
|
|
+ --quote--font-size-large: var(--global--font-size-lg);
|
|
|
|
+ --quote--font-style: normal;
|
|
|
|
+ --quote--font-style-large: normal;
|
|
|
|
+ --quote--line-height: var(--global--line-height-body);
|
|
|
|
+ --quote--line-height-large: 1.5;
|
|
|
|
+ --separator--border-color: var(--global--color-border);
|
|
|
|
+ --separator--height: 2px;
|
|
|
|
+ --separator--width: calc(6 * var(--global--spacing-horizontal));
|
|
|
|
+ --utilities--font-size-xs: var(--global--font-size-xs);
|
|
|
|
+ --utilities--font-size-sm: var(--global--font-size-sm);
|
|
|
|
+ --utilities--font-size-md: var(--global--font-size-md);
|
|
|
|
+ --utilities--font-size-lg: var(--global--font-size-lg);
|
|
|
|
+ --utilities--font-size-xl: var(--global--font-size-xl);
|
|
|
|
+ --utilities--font-size-xxl: var(--global--font-size-xxl);
|
|
|
|
+ --utilities--font-size-xxxl: var(--global--font-size-xxxl);
|
|
|
|
+ /* Components */
|
|
|
|
+ --branding--color-text: var(--global--color-foreground);
|
|
|
|
+ --branding--color-link: var(--global--color-primary);
|
|
|
|
+ --branding--color-link-hover: var(--global--color-primary-hover);
|
|
|
|
+ --branding--title--font-family: var(--global--font-primary);
|
|
|
|
+ --branding--title--font-size: calc( 1.25 * var(--heading--font-size-h1) );
|
|
|
|
+ --branding--title--font-size-mobile: var(--heading--font-size-h1);
|
|
|
|
+ --branding--title--font-weight: 700;
|
|
|
|
+ --branding--description--font-family: var(--global--font-secondary);
|
|
|
|
+ --branding--description--font-size: var(--global--font-size-sm);
|
|
|
|
+ --branding--description--font-family: var(--global--font-secondary);
|
|
|
|
+ --branding--logo--max-width: 120px;
|
|
|
|
+ --branding--logo--max-height: 120px;
|
|
|
|
+ --branding--logo--max-width-mobile: 96px;
|
|
|
|
+ --branding--logo--max-height-mobile: 96px;
|
|
|
|
+ --primary-nav--font-family: var(--global--font-secondary);
|
|
|
|
+ --primary-nav--font-family-mobile: var(--global--font-primary);
|
|
|
|
+ --primary-nav--font-size: var(--global--font-size-sm);
|
|
|
|
+ --primary-nav--font-size-mobile: var(--global--font-size-xxl);
|
|
|
|
+ --primary-nav--font-size-sub-menu-mobile: var(--global--font-size-lg);
|
|
|
|
+ --primary-nav--font-style: normal;
|
|
|
|
+ --primary-nav--font-style-sub-menu-mobile: italic;
|
|
|
|
+ --primary-nav--font-weight: normal;
|
|
|
|
+ --primary-nav--color-link: var(--global--color-primary);
|
|
|
|
+ --primary-nav--color-link-hover: var(--global--color-primary-hover);
|
|
|
|
+ --primary-nav--color-text: var(--global--color-foreground);
|
|
|
|
+ --primary-nav--padding: calc(0.66 * var(--global--spacing-unit) );
|
|
|
|
+ --primary-nav--justify-content: center;
|
|
|
|
+ --social-nav--color-link: var(--global--color-foreground);
|
|
|
|
+ --social-nav--color-link-hover: var(--global--color-primary-hover);
|
|
|
|
+ --social-nav--padding: calc( 0.5 * var(--primary-nav--padding) );
|
|
|
|
+ /* Vendors */
|
|
|
|
+ --wc--wrapper-width: default;
|
|
|
|
+ --wc--table--border-color: var(--global--color-border);
|
|
|
|
+ --wc--table--border-radius: 0;
|
|
|
|
+ --wc--table--border-width: 1px;
|
|
|
|
+ --wc--table--padding: var(--global--spacing-unit);
|
|
|
|
+ --wc--tabs--border-color: var(--global--color-border);
|
|
|
|
+ --wc--tabs--border-radius: 10px;
|
|
|
|
+ --wc--tabs--border-width: 1px;
|
|
|
|
+ --wc--tabs--padding: var(--global--spacing-horizontal);
|
|
|
|
+ --wc--mini-cart--color-background: var(--global--color-background);
|
|
|
|
+ --wc--mini-cart--color-text: var(--global--color-foreground);
|
|
|
|
+ --wc--mini-cart--color-subtotal: var(--global--color-foreground);
|
|
|
|
+ --wc--mini-cart--color-count: var(--global--color-foreground-light);
|
|
|
|
+ --wc--mini-cart--color-border: var(--global--color-border);
|
|
|
|
+ --wc--mini-cart--button-text-color: var(--button--color-text);
|
|
|
|
+ --wc--mini-cart--button-background-color: var(--button--color-background);
|
|
|
|
+ --wc--mini-cart--width: calc(25 * var(--global--spacing-unit));
|
|
|
|
+ --wc--star-rating--color: var(--global--color-alert-warning);
|
|
|
|
+}
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* Repsonsive Styles
|
|
* Repsonsive Styles
|
|
*/
|
|
*/
|
|
@@ -109,7 +305,7 @@ body {
|
|
|
|
|
|
a {
|
|
a {
|
|
border-bottom: 1px solid var(--global--color-secondary);
|
|
border-bottom: 1px solid var(--global--color-secondary);
|
|
- color: var(--global--color-primary);
|
|
|
|
|
|
+ color: var(--wp--style--color--link, var(--global--color-primary));
|
|
text-decoration: none;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -118,7 +314,15 @@ a:hover, a:focus {
|
|
}
|
|
}
|
|
|
|
|
|
a:active {
|
|
a:active {
|
|
- color: var(--global--color-primary);
|
|
|
|
|
|
+ color: var(--wp--style--color--link, var(--global--color-primary));
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+p.has-background.has-link-color:not(.has-background-background-color) a {
|
|
|
|
+ color: var(--wp--style--color--link, var(--global--color-primary));
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.has-link-color a {
|
|
|
|
+ border-bottom: 1px solid var(--wp--style--color--link);
|
|
}
|
|
}
|
|
|
|
|
|
button,
|
|
button,
|
|
@@ -145,7 +349,7 @@ blockquote cite,
|
|
blockquote footer {
|
|
blockquote footer {
|
|
color: var(--global--color-foreground-light);
|
|
color: var(--global--color-foreground-light);
|
|
font-size: var(--global--font-size-xs);
|
|
font-size: var(--global--font-size-xs);
|
|
- letter-spacing: var(--global--letter-spacing-xs);
|
|
|
|
|
|
+ letter-spacing: var(--global--letter-spacing);
|
|
}
|
|
}
|
|
|
|
|
|
blockquote > * {
|
|
blockquote > * {
|
|
@@ -175,7 +379,7 @@ blockquote.alignleft cite,
|
|
blockquote.alignleft footer, blockquote.alignright cite,
|
|
blockquote.alignleft footer, blockquote.alignright cite,
|
|
blockquote.alignright footer {
|
|
blockquote.alignright footer {
|
|
font-size: var(--global--font-size-xs);
|
|
font-size: var(--global--font-size-xs);
|
|
- letter-spacing: var(--global--letter-spacing-xs);
|
|
|
|
|
|
+ letter-spacing: var(--global--letter-spacing);
|
|
}
|
|
}
|
|
|
|
|
|
/* Media captions */
|
|
/* Media captions */
|
|
@@ -184,7 +388,7 @@ figcaption,
|
|
.wp-caption-text {
|
|
.wp-caption-text {
|
|
color: var(--global--color-foreground-light);
|
|
color: var(--global--color-foreground-light);
|
|
font-size: var(--global--font-size-xs);
|
|
font-size: var(--global--font-size-xs);
|
|
- line-height: var(--global--font-line-height-xs);
|
|
|
|
|
|
+ line-height: var(--global--line-height-body);
|
|
margin-top: calc(0.5 * var(--global--spacing-unit));
|
|
margin-top: calc(0.5 * var(--global--spacing-unit));
|
|
margin-bottom: var(--global--spacing-unit);
|
|
margin-bottom: var(--global--spacing-unit);
|
|
text-align: center;
|
|
text-align: center;
|
|
@@ -218,219 +422,6 @@ object {
|
|
max-width: 100%;
|
|
max-width: 100%;
|
|
}
|
|
}
|
|
|
|
|
|
-.wp-block-a8c-blog-posts.image-aligntop .post-thumbnail {
|
|
|
|
- margin-bottom: calc(0.5 * var(--global--spacing-vertical));
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-a8c-blog-posts.image-alignleft .post-thumbnail {
|
|
|
|
- margin-right: var(--global--spacing-vertical);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-a8c-blog-posts.image-alignright .post-thumbnail {
|
|
|
|
- margin-left: var(--global--spacing-vertical);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-a8c-blog-posts.image-alignbehind .post-has-image .entry-wrapper {
|
|
|
|
- padding: var(--global--spacing-vertical);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-a8c-blog-posts.image-alignbehind .post-has-image .cat-links {
|
|
|
|
- color: var(--global--color-white);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-a8c-blog-posts.image-alignbehind .post-has-image a:hover {
|
|
|
|
- color: currentColor;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-a8c-blog-posts .article-section-title {
|
|
|
|
- font-size: var(--global--font-size-base);
|
|
|
|
- margin-top: 0;
|
|
|
|
- margin-bottom: calc(0.5 * var(--global--spacing-vertical));
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-a8c-blog-posts article {
|
|
|
|
- margin-bottom: calc(3 * var(--global--spacing-vertical));
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-a8c-blog-posts .post-thumbnail img {
|
|
|
|
- vertical-align: middle;
|
|
|
|
- width: auto;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-a8c-blog-posts .entry-wrapper > * {
|
|
|
|
- /* Vertical margins logic between post details */
|
|
|
|
- margin-top: var(--global--spacing-unit);
|
|
|
|
- margin-bottom: var(--global--spacing-unit);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-a8c-blog-posts .entry-wrapper > *:first-child {
|
|
|
|
- margin-top: 0;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-a8c-blog-posts .entry-wrapper > *:last-child {
|
|
|
|
- margin-bottom: 0;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-a8c-blog-posts .entry-title a {
|
|
|
|
- color: var(--global--color-primary);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
|
|
|
|
-[class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
|
|
|
|
-[style*="background-color"] .wp-block-a8c-blog-posts .entry-title a {
|
|
|
|
- color: currentColor;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-a8c-blog-posts .entry-title a:hover {
|
|
|
|
- color: var(--global--color-primary-hover);
|
|
|
|
- text-decoration: underline;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
|
|
|
|
-[class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
|
|
|
|
-[style*="background-color"] .wp-block-a8c-blog-posts .entry-title a {
|
|
|
|
- color: currentColor;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-a8c-blog-posts .more-link {
|
|
|
|
- display: block;
|
|
|
|
- color: inherit;
|
|
|
|
- margin-top: var(--global--spacing-unit);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-a8c-blog-posts .more-link:after {
|
|
|
|
- content: "\02192";
|
|
|
|
- display: inline-block;
|
|
|
|
- margin-left: 0.5em;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-a8c-blog-posts .more-link:hover, .wp-block-a8c-blog-posts .more-link:active {
|
|
|
|
- color: var(--global--color-primary-hover);
|
|
|
|
- text-decoration: none;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:hover,
|
|
|
|
-[class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:hover,
|
|
|
|
-[style*="background-color"] .wp-block-a8c-blog-posts .more-link:hover, .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:active,
|
|
|
|
-[class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:active,
|
|
|
|
-[style*="background-color"] .wp-block-a8c-blog-posts .more-link:active {
|
|
|
|
- color: currentColor;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-a8c-blog-posts .entry-meta,
|
|
|
|
-.wp-block-a8c-blog-posts .cat-links {
|
|
|
|
- color: var(--global--color-foreground-light);
|
|
|
|
- font-size: var(--global--font-size-sm);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta,
|
|
|
|
-[class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta,
|
|
|
|
-[style*="background-color"] .wp-block-a8c-blog-posts .entry-meta, .has-background:not(.has-background-background-color)
|
|
|
|
-.wp-block-a8c-blog-posts .cat-links,
|
|
|
|
-[class*="background-color"]:not(.has-background-background-color)
|
|
|
|
-.wp-block-a8c-blog-posts .cat-links,
|
|
|
|
-[style*="background-color"]
|
|
|
|
-.wp-block-a8c-blog-posts .cat-links {
|
|
|
|
- color: currentColor;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-a8c-blog-posts .entry-meta .byline:not(:last-child),
|
|
|
|
-.wp-block-a8c-blog-posts .cat-links .byline:not(:last-child) {
|
|
|
|
- margin-right: var(--global--spacing-unit);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-a8c-blog-posts .entry-meta .published + .updated,
|
|
|
|
-.wp-block-a8c-blog-posts .cat-links .published + .updated {
|
|
|
|
- display: none;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-a8c-blog-posts .entry-meta a,
|
|
|
|
-.wp-block-a8c-blog-posts .cat-links a {
|
|
|
|
- color: currentColor;
|
|
|
|
- text-decoration: underline;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-a8c-blog-posts .entry-meta a:hover, .wp-block-a8c-blog-posts .entry-meta a:active,
|
|
|
|
-.wp-block-a8c-blog-posts .cat-links a:hover,
|
|
|
|
-.wp-block-a8c-blog-posts .cat-links a:active {
|
|
|
|
- color: var(--global--color-primary-hover);
|
|
|
|
- text-decoration: none;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:hover,
|
|
|
|
-[class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:hover,
|
|
|
|
-[style*="background-color"] .wp-block-a8c-blog-posts .entry-meta a:hover, .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:active,
|
|
|
|
-[class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:active,
|
|
|
|
-[style*="background-color"] .wp-block-a8c-blog-posts .entry-meta a:active, .has-background:not(.has-background-background-color)
|
|
|
|
-.wp-block-a8c-blog-posts .cat-links a:hover,
|
|
|
|
-[class*="background-color"]:not(.has-background-background-color)
|
|
|
|
-.wp-block-a8c-blog-posts .cat-links a:hover,
|
|
|
|
-[style*="background-color"]
|
|
|
|
-.wp-block-a8c-blog-posts .cat-links a:hover, .has-background:not(.has-background-background-color)
|
|
|
|
-.wp-block-a8c-blog-posts .cat-links a:active,
|
|
|
|
-[class*="background-color"]:not(.has-background-background-color)
|
|
|
|
-.wp-block-a8c-blog-posts .cat-links a:active,
|
|
|
|
-[style*="background-color"]
|
|
|
|
-.wp-block-a8c-blog-posts .cat-links a:active {
|
|
|
|
- color: currentColor;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-a8c-blog-posts + .button, .wp-block-search .wp-block-search__button {
|
|
|
|
- line-height: var(--button--line-height);
|
|
|
|
- color: var(--button--color-text);
|
|
|
|
- cursor: pointer;
|
|
|
|
- font-weight: var(--button--font-weight);
|
|
|
|
- font-family: var(--button--font-family);
|
|
|
|
- font-size: var(--button--font-size);
|
|
|
|
- background-color: var(--button--color-background);
|
|
|
|
- border-radius: var(--button--border-radius);
|
|
|
|
- border-width: 0;
|
|
|
|
- text-decoration: none;
|
|
|
|
- padding: var(--button--padding-vertical) var(--button--padding-horizontal);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-a8c-blog-posts + .button:before, .wp-block-search .wp-block-search__button:before, .wp-block-a8c-blog-posts + .button:after, .wp-block-search .wp-block-search__button:after {
|
|
|
|
- content: '';
|
|
|
|
- display: block;
|
|
|
|
- height: 0;
|
|
|
|
- width: 0;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-a8c-blog-posts + .button:before, .wp-block-search .wp-block-search__button:before {
|
|
|
|
- margin-bottom: -calc(.5em * var(--button--line-height) + -.38);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-a8c-blog-posts + .button:after, .wp-block-search .wp-block-search__button:after {
|
|
|
|
- margin-top: -calc(.5em * var(--button--line-height) + -.39);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-a8c-blog-posts + .button:active, .wp-block-search .wp-block-search__button:active {
|
|
|
|
- color: var(--button--color-text-active);
|
|
|
|
- background-color: var(--button--color-background-active);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-a8c-blog-posts + .button:hover, .wp-block-search .wp-block-search__button:hover, .wp-block-a8c-blog-posts + .button:focus, .wp-block-search .wp-block-search__button:focus, .wp-block-a8c-blog-posts + .has-focus.button, .wp-block-search .has-focus.wp-block-search__button {
|
|
|
|
- color: var(--button--color-text-hover);
|
|
|
|
- background-color: var(--button--color-background-hover);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-a8c-blog-posts + .button {
|
|
|
|
- display: inline-block;
|
|
|
|
- font-size: var(--global--font-size-md);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-a8c-blog-posts + .button:hover {
|
|
|
|
- cursor: default;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts + .button,
|
|
|
|
-[class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts + .button,
|
|
|
|
-[style*="background-color"] .wp-block-a8c-blog-posts + .button {
|
|
|
|
- background-color: transparent;
|
|
|
|
- border: var(--button--border-width, 2px) solid currentColor;
|
|
|
|
- color: currentColor;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
.wp-block-button__link {
|
|
.wp-block-button__link {
|
|
color: var(--button--color-text);
|
|
color: var(--button--color-text);
|
|
font-weight: var(--button--font-weight);
|
|
font-weight: var(--button--font-weight);
|
|
@@ -1197,6 +1188,120 @@ pre.wp-block-verse {
|
|
/**
|
|
/**
|
|
* Spacing Overrides
|
|
* Spacing Overrides
|
|
*/
|
|
*/
|
|
|
|
+/*
|
|
|
|
+ * Margins
|
|
|
|
+ */
|
|
|
|
+.margin-top-none {
|
|
|
|
+ margin-top: 0 !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.margin-top-half {
|
|
|
|
+ margin-top: calc(0.5 * var(--global--spacing-vertical)) !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.margin-top-default {
|
|
|
|
+ margin-top: var(--global--spacing-vertical) !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.margin-right-none {
|
|
|
|
+ /*rtl:ignore*/
|
|
|
|
+ margin-right: 0 !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.margin-right-half {
|
|
|
|
+ /*rtl:ignore*/
|
|
|
|
+ margin-right: calc(0.5 * var(--global--spacing-vertical)) !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.margin-right-default {
|
|
|
|
+ /*rtl:ignore*/
|
|
|
|
+ margin-right: var(--global--spacing-vertical) !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.margin-bottom-none {
|
|
|
|
+ margin-bottom: 0 !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.margin-bottom-half {
|
|
|
|
+ margin-bottom: calc(0.5 * var(--global--spacing-vertical)) !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.margin-bottom-default {
|
|
|
|
+ margin-bottom: var(--global--spacing-vertical) !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.margin-left-none {
|
|
|
|
+ /*rtl:ignore*/
|
|
|
|
+ margin-left: 0 !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.margin-left-half {
|
|
|
|
+ /*rtl:ignore*/
|
|
|
|
+ margin-left: calc(0.5 * var(--global--spacing-vertical)) !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.margin-left-default {
|
|
|
|
+ /*rtl:ignore*/
|
|
|
|
+ margin-left: var(--global--spacing-vertical) !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/*
|
|
|
|
+ * Padding
|
|
|
|
+ */
|
|
|
|
+.padding-top-none {
|
|
|
|
+ padding-top: 0 !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.padding-top-half {
|
|
|
|
+ padding-top: calc(0.5 * var(--global--spacing-vertical)) !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.padding-top-default {
|
|
|
|
+ padding-top: var(--global--spacing-vertical) !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.padding-right-none {
|
|
|
|
+ /*rtl:ignore*/
|
|
|
|
+ padding-right: 0 !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.padding-right-half {
|
|
|
|
+ /*rtl:ignore*/
|
|
|
|
+ padding-right: calc(0.5 * var(--global--spacing-vertical)) !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.padding-right-default {
|
|
|
|
+ /*rtl:ignore*/
|
|
|
|
+ padding-right: var(--global--spacing-vertical) !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.padding-bottom-none {
|
|
|
|
+ padding-bottom: 0 !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.padding-bottom-half {
|
|
|
|
+ padding-bottom: calc(0.5 * var(--global--spacing-vertical)) !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.padding-bottom-default {
|
|
|
|
+ padding-bottom: var(--global--spacing-vertical) !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.padding-left-none {
|
|
|
|
+ /*rtl:ignore*/
|
|
|
|
+ padding-left: 0 !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.padding-left-half {
|
|
|
|
+ /*rtl:ignore*/
|
|
|
|
+ padding-left: calc(0.5 * var(--global--spacing-vertical)) !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.padding-left-default {
|
|
|
|
+ /*rtl:ignore*/
|
|
|
|
+ padding-left: var(--global--spacing-vertical) !important;
|
|
|
|
+}
|
|
|
|
+
|
|
[data-block] {
|
|
[data-block] {
|
|
margin-top: var(--global--spacing-vertical);
|
|
margin-top: var(--global--spacing-vertical);
|
|
margin-bottom: var(--global--spacing-vertical);
|
|
margin-bottom: var(--global--spacing-vertical);
|
|
@@ -1262,6 +1367,11 @@ pre.wp-block-verse {
|
|
max-width: none;
|
|
max-width: none;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+.block-editor-block-list__layout:not(.edit-site-block-editor__block-list) .wp-block[data-align="full"] > [data-block], .block-editor-block-list__layout:not(.edit-site-block-editor__block-list) .wp-block.alignfull > [data-block] {
|
|
|
|
+ margin-top: 0;
|
|
|
|
+ margin-bottom: 0;
|
|
|
|
+}
|
|
|
|
+
|
|
.alignleft {
|
|
.alignleft {
|
|
margin: 0;
|
|
margin: 0;
|
|
margin-right: var(--global--spacing-horizontal);
|
|
margin-right: var(--global--spacing-horizontal);
|
|
@@ -1278,6 +1388,218 @@ pre.wp-block-verse {
|
|
/**
|
|
/**
|
|
* Jetpack Block editor styles
|
|
* Jetpack Block editor styles
|
|
*/
|
|
*/
|
|
|
|
+.wp-block-a8c-blog-posts.image-aligntop .post-thumbnail {
|
|
|
|
+ margin-bottom: calc(0.5 * var(--global--spacing-vertical));
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-a8c-blog-posts.image-alignleft .post-thumbnail {
|
|
|
|
+ margin-right: var(--global--spacing-vertical);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-a8c-blog-posts.image-alignright .post-thumbnail {
|
|
|
|
+ margin-left: var(--global--spacing-vertical);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-a8c-blog-posts.image-alignbehind .post-has-image .entry-wrapper {
|
|
|
|
+ padding: var(--global--spacing-vertical);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-a8c-blog-posts.image-alignbehind .post-has-image .cat-links {
|
|
|
|
+ color: var(--global--color-white);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-a8c-blog-posts.image-alignbehind .post-has-image a:hover {
|
|
|
|
+ color: currentColor;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-a8c-blog-posts .article-section-title {
|
|
|
|
+ font-size: var(--global--font-size-base);
|
|
|
|
+ margin-top: 0;
|
|
|
|
+ margin-bottom: calc(0.5 * var(--global--spacing-vertical));
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-a8c-blog-posts article {
|
|
|
|
+ margin-bottom: calc(3 * var(--global--spacing-vertical));
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-a8c-blog-posts .post-thumbnail img {
|
|
|
|
+ vertical-align: middle;
|
|
|
|
+ width: auto;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-a8c-blog-posts .entry-wrapper > * {
|
|
|
|
+ /* Vertical margins logic between post details */
|
|
|
|
+ margin-top: var(--global--spacing-unit);
|
|
|
|
+ margin-bottom: var(--global--spacing-unit);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-a8c-blog-posts .entry-wrapper > *:first-child {
|
|
|
|
+ margin-top: 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-a8c-blog-posts .entry-wrapper > *:last-child {
|
|
|
|
+ margin-bottom: 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-a8c-blog-posts .entry-title a {
|
|
|
|
+ color: var(--global--color-primary);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
|
|
|
|
+[class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
|
|
|
|
+[style*="background-color"] .wp-block-a8c-blog-posts .entry-title a {
|
|
|
|
+ color: currentColor;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-a8c-blog-posts .entry-title a:hover {
|
|
|
|
+ color: var(--global--color-primary-hover);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
|
|
|
|
+[class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-title a,
|
|
|
|
+[style*="background-color"] .wp-block-a8c-blog-posts .entry-title a {
|
|
|
|
+ color: currentColor;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-a8c-blog-posts .more-link {
|
|
|
|
+ display: block;
|
|
|
|
+ color: inherit;
|
|
|
|
+ margin-top: var(--global--spacing-unit);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-a8c-blog-posts .more-link:after {
|
|
|
|
+ content: "\02192";
|
|
|
|
+ display: inline-block;
|
|
|
|
+ margin-left: 0.5em;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-a8c-blog-posts .more-link:hover, .wp-block-a8c-blog-posts .more-link:active {
|
|
|
|
+ color: var(--global--color-primary-hover);
|
|
|
|
+ text-decoration: none;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:hover,
|
|
|
|
+[class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:hover,
|
|
|
|
+[style*="background-color"] .wp-block-a8c-blog-posts .more-link:hover, .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:active,
|
|
|
|
+[class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .more-link:active,
|
|
|
|
+[style*="background-color"] .wp-block-a8c-blog-posts .more-link:active {
|
|
|
|
+ color: currentColor;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-a8c-blog-posts .entry-meta,
|
|
|
|
+.wp-block-a8c-blog-posts .cat-links {
|
|
|
|
+ color: var(--global--color-foreground-light);
|
|
|
|
+ font-size: var(--global--font-size-sm);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta,
|
|
|
|
+[class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta,
|
|
|
|
+[style*="background-color"] .wp-block-a8c-blog-posts .entry-meta, .has-background:not(.has-background-background-color)
|
|
|
|
+.wp-block-a8c-blog-posts .cat-links,
|
|
|
|
+[class*="background-color"]:not(.has-background-background-color)
|
|
|
|
+.wp-block-a8c-blog-posts .cat-links,
|
|
|
|
+[style*="background-color"]
|
|
|
|
+.wp-block-a8c-blog-posts .cat-links {
|
|
|
|
+ color: currentColor;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-a8c-blog-posts .entry-meta .byline:not(:last-child),
|
|
|
|
+.wp-block-a8c-blog-posts .cat-links .byline:not(:last-child) {
|
|
|
|
+ margin-right: var(--global--spacing-unit);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-a8c-blog-posts .entry-meta .published + .updated,
|
|
|
|
+.wp-block-a8c-blog-posts .cat-links .published + .updated {
|
|
|
|
+ display: none;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-a8c-blog-posts .entry-meta a,
|
|
|
|
+.wp-block-a8c-blog-posts .cat-links a {
|
|
|
|
+ color: currentColor;
|
|
|
|
+ text-decoration: underline;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-a8c-blog-posts .entry-meta a:hover, .wp-block-a8c-blog-posts .entry-meta a:active,
|
|
|
|
+.wp-block-a8c-blog-posts .cat-links a:hover,
|
|
|
|
+.wp-block-a8c-blog-posts .cat-links a:active {
|
|
|
|
+ color: var(--global--color-primary-hover);
|
|
|
|
+ text-decoration: none;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:hover,
|
|
|
|
+[class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:hover,
|
|
|
|
+[style*="background-color"] .wp-block-a8c-blog-posts .entry-meta a:hover, .has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:active,
|
|
|
|
+[class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts .entry-meta a:active,
|
|
|
|
+[style*="background-color"] .wp-block-a8c-blog-posts .entry-meta a:active, .has-background:not(.has-background-background-color)
|
|
|
|
+.wp-block-a8c-blog-posts .cat-links a:hover,
|
|
|
|
+[class*="background-color"]:not(.has-background-background-color)
|
|
|
|
+.wp-block-a8c-blog-posts .cat-links a:hover,
|
|
|
|
+[style*="background-color"]
|
|
|
|
+.wp-block-a8c-blog-posts .cat-links a:hover, .has-background:not(.has-background-background-color)
|
|
|
|
+.wp-block-a8c-blog-posts .cat-links a:active,
|
|
|
|
+[class*="background-color"]:not(.has-background-background-color)
|
|
|
|
+.wp-block-a8c-blog-posts .cat-links a:active,
|
|
|
|
+[style*="background-color"]
|
|
|
|
+.wp-block-a8c-blog-posts .cat-links a:active {
|
|
|
|
+ color: currentColor;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-search .wp-block-search__button, .wp-block-a8c-blog-posts + .button {
|
|
|
|
+ line-height: var(--button--line-height);
|
|
|
|
+ color: var(--button--color-text);
|
|
|
|
+ cursor: pointer;
|
|
|
|
+ font-weight: var(--button--font-weight);
|
|
|
|
+ font-family: var(--button--font-family);
|
|
|
|
+ font-size: var(--button--font-size);
|
|
|
|
+ background-color: var(--button--color-background);
|
|
|
|
+ border-radius: var(--button--border-radius);
|
|
|
|
+ border-width: 0;
|
|
|
|
+ text-decoration: none;
|
|
|
|
+ padding: var(--button--padding-vertical) var(--button--padding-horizontal);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-search .wp-block-search__button:before, .wp-block-a8c-blog-posts + .button:before, .wp-block-search .wp-block-search__button:after, .wp-block-a8c-blog-posts + .button:after {
|
|
|
|
+ content: '';
|
|
|
|
+ display: block;
|
|
|
|
+ height: 0;
|
|
|
|
+ width: 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-search .wp-block-search__button:before, .wp-block-a8c-blog-posts + .button:before {
|
|
|
|
+ margin-bottom: -calc(.5em * var(--button--line-height) + -.38);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-search .wp-block-search__button:after, .wp-block-a8c-blog-posts + .button:after {
|
|
|
|
+ margin-top: -calc(.5em * var(--button--line-height) + -.39);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-search .wp-block-search__button:active, .wp-block-a8c-blog-posts + .button:active {
|
|
|
|
+ color: var(--button--color-text-active);
|
|
|
|
+ background-color: var(--button--color-background-active);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-search .wp-block-search__button:hover, .wp-block-a8c-blog-posts + .button:hover, .wp-block-search .wp-block-search__button:focus, .wp-block-a8c-blog-posts + .button:focus, .wp-block-search .has-focus.wp-block-search__button, .wp-block-a8c-blog-posts + .has-focus.button {
|
|
|
|
+ color: var(--button--color-text-hover);
|
|
|
|
+ background-color: var(--button--color-background-hover);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-a8c-blog-posts + .button {
|
|
|
|
+ display: inline-block;
|
|
|
|
+ font-size: var(--global--font-size-md);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-a8c-blog-posts + .button:hover {
|
|
|
|
+ cursor: default;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.has-background:not(.has-background-background-color) .wp-block-a8c-blog-posts + .button,
|
|
|
|
+[class*="background-color"]:not(.has-background-background-color) .wp-block-a8c-blog-posts + .button,
|
|
|
|
+[style*="background-color"] .wp-block-a8c-blog-posts + .button {
|
|
|
|
+ background-color: transparent;
|
|
|
|
+ border: var(--button--border-width, 2px) solid currentColor;
|
|
|
|
+ color: currentColor;
|
|
|
|
+}
|
|
|
|
+
|
|
/* Gutter Options */
|
|
/* Gutter Options */
|
|
.wp-block-jetpack-layout-grid,
|
|
.wp-block-jetpack-layout-grid,
|
|
.wp-block-jetpack-layout-grid > .block-editor-inner-blocks > .block-editor-block-list__layout {
|
|
.wp-block-jetpack-layout-grid > .block-editor-inner-blocks > .block-editor-block-list__layout {
|
|
@@ -1435,9 +1757,10 @@ pre.wp-block-verse {
|
|
padding-left: calc(var(--layout-grid--gutter-huge) + var(--layout-grid--background-offset));
|
|
padding-left: calc(var(--layout-grid--gutter-huge) + var(--layout-grid--background-offset));
|
|
}
|
|
}
|
|
|
|
|
|
-/* Overlay grid */
|
|
|
|
|
|
+/* Overlay styles and margin reset */
|
|
.wp-block-jetpack-layout-grid {
|
|
.wp-block-jetpack-layout-grid {
|
|
/* wpcom-overlay-grid is the classname targeting the grid overlay visual aid displayed in the editor */
|
|
/* wpcom-overlay-grid is the classname targeting the grid overlay visual aid displayed in the editor */
|
|
|
|
+ /* Override default block margin rules */
|
|
}
|
|
}
|
|
|
|
|
|
.wp-block-jetpack-layout-grid .wpcom-overlay-grid {
|
|
.wp-block-jetpack-layout-grid .wpcom-overlay-grid {
|
|
@@ -1451,6 +1774,11 @@ pre.wp-block-verse {
|
|
padding-right: 0;
|
|
padding-right: 0;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+.wp-block-jetpack-layout-grid [data-type="jetpack/layout-grid-column"] {
|
|
|
|
+ margin-top: 0;
|
|
|
|
+ margin-bottom: 0;
|
|
|
|
+}
|
|
|
|
+
|
|
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__none .wpcom-overlay-grid {
|
|
.wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__none .wpcom-overlay-grid {
|
|
grid-gap: var(--layout-grid--gutter-none);
|
|
grid-gap: var(--layout-grid--gutter-none);
|
|
}
|
|
}
|