Coutoire: Refactor responsive logic for .alignwide, alignfull, and normal width blocks. Fix negative margin issue in main menu.
This commit is contained in:
parent
0cbc378795
commit
95bd196413
4 changed files with 612 additions and 543 deletions
|
@ -64,6 +64,16 @@ a {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.main-navigation > div > ul > li:first-of-type,
|
||||||
|
.social-navigation > div > ul > li:first-of-type {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-navigation > div > ul > li:last-of-type,
|
||||||
|
.social-navigation > div > ul > li:last-of-type {
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.main-navigation {
|
.main-navigation {
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
|
@ -107,17 +107,9 @@ $grid-configuration: map-extend($grid-configuration-default, $grid-configuration
|
||||||
* Responsive breakpoints
|
* Responsive breakpoints
|
||||||
* - breakpoints values are defined in _config-global.scss
|
* - breakpoints values are defined in _config-global.scss
|
||||||
*/
|
*/
|
||||||
/**
|
|
||||||
* Align widths
|
|
||||||
* - Sets negative margin for .alignwide and .alignfull blocks
|
|
||||||
*/
|
|
||||||
/**
|
/**
|
||||||
* Align wide widths
|
* Align wide widths
|
||||||
* - Sets negative margin for .alignwide and .alignfull blocks
|
* - Sets .alignwide widths
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Align container widths
|
|
||||||
* - Sets a fixed-width on content within alignwide and alignfull blocks
|
|
||||||
*/
|
*/
|
||||||
/**
|
/**
|
||||||
* Crop Text Boundry
|
* Crop Text Boundry
|
||||||
|
@ -437,7 +429,19 @@ object {
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-media-text[style*="background-color"]:not(.has-background-background-color) .block-editor-inner-blocks a {
|
.wp-block-media-text .block-editor-inner-blocks {
|
||||||
|
padding-right: 16px;
|
||||||
|
padding-left: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 640px) {
|
||||||
|
.wp-block-media-text .block-editor-inner-blocks {
|
||||||
|
padding-right: 32px;
|
||||||
|
padding-left: 32px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-block-media-text .block-editor-inner-blocks[style*="background-color"]:not(.has-background-background-color) a {
|
||||||
color: currentColor;
|
color: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -128,17 +128,9 @@ $grid-configuration: map-extend($grid-configuration-default, $grid-configuration
|
||||||
* Responsive breakpoints
|
* Responsive breakpoints
|
||||||
* - breakpoints values are defined in _config-global.scss
|
* - breakpoints values are defined in _config-global.scss
|
||||||
*/
|
*/
|
||||||
/**
|
|
||||||
* Align widths
|
|
||||||
* - Sets negative margin for .alignwide and .alignfull blocks
|
|
||||||
*/
|
|
||||||
/**
|
/**
|
||||||
* Align wide widths
|
* Align wide widths
|
||||||
* - Sets negative margin for .alignwide and .alignfull blocks
|
* - Sets .alignwide widths
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Align container widths
|
|
||||||
* - Sets a fixed-width on content within alignwide and alignfull blocks
|
|
||||||
*/
|
*/
|
||||||
/**
|
/**
|
||||||
* Crop Text Boundry
|
* Crop Text Boundry
|
||||||
|
@ -818,6 +810,7 @@ footer {
|
||||||
.site-footer > *,
|
.site-footer > *,
|
||||||
.site-main > article > *,
|
.site-main > article > *,
|
||||||
.entry-content > *,
|
.entry-content > *,
|
||||||
|
[class*="inner-container"] > *,
|
||||||
.widget-area > * {
|
.widget-area > * {
|
||||||
margin-top: 21.312px;
|
margin-top: 21.312px;
|
||||||
margin-bottom: 21.312px;
|
margin-bottom: 21.312px;
|
||||||
|
@ -827,6 +820,7 @@ footer {
|
||||||
.site-footer > *,
|
.site-footer > *,
|
||||||
.site-main > article > *,
|
.site-main > article > *,
|
||||||
.entry-content > *,
|
.entry-content > *,
|
||||||
|
[class*="inner-container"] > *,
|
||||||
.widget-area > * {
|
.widget-area > * {
|
||||||
margin-top: 32px;
|
margin-top: 32px;
|
||||||
margin-bottom: 32px;
|
margin-bottom: 32px;
|
||||||
|
@ -836,6 +830,7 @@ footer {
|
||||||
.site-footer > *:first-child,
|
.site-footer > *:first-child,
|
||||||
.site-main > article > *:first-child,
|
.site-main > article > *:first-child,
|
||||||
.entry-content > *:first-child,
|
.entry-content > *:first-child,
|
||||||
|
[class*="inner-container"] > *:first-child,
|
||||||
.widget-area > *:first-child {
|
.widget-area > *:first-child {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
@ -843,6 +838,7 @@ footer {
|
||||||
.site-footer > *:last-child,
|
.site-footer > *:last-child,
|
||||||
.site-main > article > *:last-child,
|
.site-main > article > *:last-child,
|
||||||
.entry-content > *:last-child,
|
.entry-content > *:last-child,
|
||||||
|
[class*="inner-container"] > *:last-child,
|
||||||
.widget-area > *:last-child {
|
.widget-area > *:last-child {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
@ -1230,7 +1226,6 @@ input.has-focus[type="submit"],
|
||||||
.wp-block-cover-image .wp-block-cover__inner-container,
|
.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-image-text,
|
||||||
.wp-block-cover-image .wp-block-cover-text {
|
.wp-block-cover-image .wp-block-cover-text {
|
||||||
width: calc(100% - 32px);
|
|
||||||
color: white;
|
color: white;
|
||||||
margin-top: 32px;
|
margin-top: 32px;
|
||||||
margin-bottom: 32px;
|
margin-bottom: 32px;
|
||||||
|
@ -1270,6 +1265,35 @@ input.has-focus[type="submit"],
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.wp-block-cover .wp-block-cover__inner-container,
|
||||||
|
.wp-block-cover-image .wp-block-cover__inner-container {
|
||||||
|
width: calc(100% - 64px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.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.alignleft, .wp-block-cover.alignright,
|
||||||
.wp-block-cover-image.alignleft,
|
.wp-block-cover-image.alignleft,
|
||||||
.wp-block-cover-image.alignright {
|
.wp-block-cover-image.alignright {
|
||||||
|
@ -1337,49 +1361,34 @@ input.has-focus[type="submit"],
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-group .wp-block-group__inner-container h1, .wp-block-group .wp-block-group__inner-container h2, .wp-block-group .wp-block-group__inner-container h3, .wp-block-group .wp-block-group__inner-container h4, .wp-block-group .wp-block-group__inner-container h5, .wp-block-group .wp-block-group__inner-container h6, .wp-block-group .wp-block-group__inner-container p, .wp-block-group .wp-block-group__inner-container hr {
|
.wp-block-group .wp-block-group__inner-container > * {
|
||||||
margin-top: 16px;
|
margin-top: 21.312px;
|
||||||
margin-bottom: 16px;
|
margin-bottom: 21.312px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-group .wp-block-group__inner-container h1:first-child, .wp-block-group .wp-block-group__inner-container h2:first-child, .wp-block-group .wp-block-group__inner-container h3:first-child, .wp-block-group .wp-block-group__inner-container h4:first-child, .wp-block-group .wp-block-group__inner-container h5:first-child, .wp-block-group .wp-block-group__inner-container h6:first-child, .wp-block-group .wp-block-group__inner-container p:first-child, .wp-block-group .wp-block-group__inner-container hr:first-child {
|
@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;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-group .wp-block-group__inner-container h1:last-child, .wp-block-group .wp-block-group__inner-container h2:last-child, .wp-block-group .wp-block-group__inner-container h3:last-child, .wp-block-group .wp-block-group__inner-container h4:last-child, .wp-block-group .wp-block-group__inner-container h5:last-child, .wp-block-group .wp-block-group__inner-container h6:last-child, .wp-block-group .wp-block-group__inner-container p:last-child, .wp-block-group .wp-block-group__inner-container hr:last-child {
|
.wp-block-group .wp-block-group__inner-container > *:last-child {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-group.alignwide .alignwide,
|
|
||||||
.wp-block-group.alignwide .alignfull,
|
|
||||||
.wp-block-group.alignfull .alignwide {
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
|
|
||||||
.wp-block-group.alignfull .alignfull {
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
|
|
||||||
.wp-block-group.has-background {
|
.wp-block-group.has-background {
|
||||||
padding: 16px;
|
padding: 21.312px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-group.has-background.alignwide > .wp-block-group__inner-container > .alignwide:first-of-type,
|
@media only screen and (min-width: 560px) {
|
||||||
.wp-block-group.has-background.alignwide > .wp-block-group__inner-container > .alignfull:first-of-type {
|
.wp-block-group.has-background {
|
||||||
margin-top: -16px;
|
padding: 32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-group.has-background.alignwide > .wp-block-group__inner-container > .alignwide:last-of-type,
|
|
||||||
.wp-block-group.has-background.alignwide > .wp-block-group__inner-container > .alignfull:last-of-type {
|
|
||||||
margin-bottom: -16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.wp-block-group.has-background.alignfull > .wp-block-group__inner-container > .alignfull:first-of-type {
|
|
||||||
margin-top: -16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.wp-block-group.has-background.alignfull > .wp-block-group__inner-container > .alignfull:last-of-type {
|
|
||||||
margin-bottom: -16px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
h1, .h1,
|
h1, .h1,
|
||||||
|
@ -1437,6 +1446,17 @@ h6, .h6 {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.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;
|
||||||
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
height: auto;
|
height: auto;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
|
@ -1594,20 +1614,32 @@ dd {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-media-text .wp-block-media-text__content {
|
.wp-block-media-text .wp-block-media-text__content {
|
||||||
padding-right: 16px;
|
padding: 16px;
|
||||||
padding-left: 16px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-media-text .wp-block-media-text__content h1, .wp-block-media-text .wp-block-media-text__content h2, .wp-block-media-text .wp-block-media-text__content h3, .wp-block-media-text .wp-block-media-text__content h4, .wp-block-media-text .wp-block-media-text__content h5, .wp-block-media-text .wp-block-media-text__content h6, .wp-block-media-text .wp-block-media-text__content p, .wp-block-media-text .wp-block-media-text__content hr {
|
@media only screen and (min-width: 640px) {
|
||||||
margin-top: 16px;
|
.wp-block-media-text .wp-block-media-text__content {
|
||||||
margin-bottom: 16px;
|
padding: 32px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-media-text .wp-block-media-text__content h1:first-child, .wp-block-media-text .wp-block-media-text__content h2:first-child, .wp-block-media-text .wp-block-media-text__content h3:first-child, .wp-block-media-text .wp-block-media-text__content h4:first-child, .wp-block-media-text .wp-block-media-text__content h5:first-child, .wp-block-media-text .wp-block-media-text__content h6:first-child, .wp-block-media-text .wp-block-media-text__content p:first-child, .wp-block-media-text .wp-block-media-text__content hr:first-child {
|
.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;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-media-text .wp-block-media-text__content h1:last-child, .wp-block-media-text .wp-block-media-text__content h2:last-child, .wp-block-media-text .wp-block-media-text__content h3:last-child, .wp-block-media-text .wp-block-media-text__content h4:last-child, .wp-block-media-text .wp-block-media-text__content h5:last-child, .wp-block-media-text .wp-block-media-text__content h6:last-child, .wp-block-media-text .wp-block-media-text__content p:last-child, .wp-block-media-text .wp-block-media-text__content hr:last-child {
|
.wp-block-media-text .wp-block-media-text__content > *:last-child {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1615,15 +1647,11 @@ dd {
|
||||||
color: currentColor;
|
color: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 560px) {
|
||||||
.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
|
.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
|
||||||
padding-top: 32px;
|
padding-top: 32px;
|
||||||
padding-bottom: 32px;
|
padding-bottom: 32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 640px) {
|
|
||||||
.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
|
|
||||||
padding: 0 16px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
p.has-background {
|
p.has-background {
|
||||||
|
@ -1743,6 +1771,10 @@ p.has-background:not(.has-background-background-color) a {
|
||||||
background: none;
|
background: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.wp-block-pullquote:not(.is-style-solid-color) blockquote {
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.wp-block-pullquote.is-style-default.alignleft blockquote > *, .wp-block-pullquote.is-style-default.aligncenter blockquote > *, .wp-block-pullquote.is-style-default.alignright blockquote > * {
|
.wp-block-pullquote.is-style-default.alignleft blockquote > *, .wp-block-pullquote.is-style-default.aligncenter blockquote > *, .wp-block-pullquote.is-style-default.alignright blockquote > * {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
@ -1926,7 +1958,6 @@ table th,
|
||||||
.alignleft {
|
.alignleft {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
float: left;
|
float: left;
|
||||||
margin-right: 16px;
|
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin-bottom: 32px;
|
margin-bottom: 32px;
|
||||||
}
|
}
|
||||||
|
@ -1944,11 +1975,24 @@ table th,
|
||||||
margin-bottom: 32px;
|
margin-bottom: 32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.entry-content > .alignwide {
|
/**
|
||||||
|
* .aligndefault
|
||||||
|
*/
|
||||||
|
.entry-content [class*="inner-container"] {
|
||||||
|
max-width: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* .alignwide
|
||||||
|
*/
|
||||||
|
.alignwide {
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
|
|
||||||
.entry-content > .alignfull {
|
/**
|
||||||
|
* .alignfull
|
||||||
|
*/
|
||||||
|
.alignfull {
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2077,7 +2121,7 @@ table th,
|
||||||
.has-regular-font-size,
|
.has-regular-font-size,
|
||||||
.has-normal-font-size,
|
.has-normal-font-size,
|
||||||
.has-medium-font-size {
|
.has-medium-font-size {
|
||||||
font-size: 1.2rem;
|
font-size: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.is-large-text,
|
.is-large-text,
|
||||||
|
@ -2316,8 +2360,8 @@ table th,
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
|
margin: 0;
|
||||||
max-width: none;
|
max-width: none;
|
||||||
margin: 0 -10px;
|
|
||||||
position: relative;
|
position: relative;
|
||||||
/* Sub-menus Flyout */
|
/* Sub-menus Flyout */
|
||||||
}
|
}
|
||||||
|
@ -2363,6 +2407,14 @@ table th,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.main-navigation > div > ul > li:first-of-type {
|
||||||
|
margin-right: -16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-navigation > div > ul > li:last-of-type {
|
||||||
|
margin-left: -16px;
|
||||||
|
}
|
||||||
|
|
||||||
.main-navigation > div > ul > li > a {
|
.main-navigation > div > ul > li > a {
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
}
|
}
|
||||||
|
@ -2465,7 +2517,15 @@ table th,
|
||||||
align-content: center;
|
align-content: center;
|
||||||
display: flex;
|
display: flex;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
margin: 0 calc(-0.5 * 16px);
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.social-navigation > div > ul > li:first-of-type {
|
||||||
|
margin-right: calc(-0.5 * 16px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.social-navigation > div > ul > li:last-of-type {
|
||||||
|
margin-left: calc(-0.5 * 16px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.social-navigation a {
|
.social-navigation a {
|
||||||
|
@ -2483,6 +2543,10 @@ table th,
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.site-footer {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 640px) {
|
@media only screen and (min-width: 640px) {
|
||||||
.site-footer {
|
.site-footer {
|
||||||
align-items: flex-end;
|
align-items: flex-end;
|
||||||
|
@ -2543,9 +2607,8 @@ table th,
|
||||||
|
|
||||||
.footer-navigation .footer-menu {
|
.footer-navigation .footer-menu {
|
||||||
color: #767676;
|
color: #767676;
|
||||||
|
margin: 0;
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
margin-right: -16px;
|
|
||||||
margin-left: -16px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 640px) {
|
@media only screen and (min-width: 640px) {
|
||||||
|
@ -2556,10 +2619,18 @@ table th,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer-navigation .footer-menu li {
|
.footer-navigation .footer-menu > li {
|
||||||
display: inline;
|
display: inline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.footer-navigation .footer-menu > li:first-of-type {
|
||||||
|
margin-right: -16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-navigation .footer-menu > li:last-of-type {
|
||||||
|
margin-left: -16px;
|
||||||
|
}
|
||||||
|
|
||||||
.footer-navigation .footer-menu a {
|
.footer-navigation .footer-menu a {
|
||||||
font-family: "Work Sans", sans-serif;
|
font-family: "Work Sans", sans-serif;
|
||||||
font-size: 0.83333rem;
|
font-size: 0.83333rem;
|
||||||
|
@ -3055,277 +3126,219 @@ img#wpstats {
|
||||||
* Page Layout Styles & Repsonsive Styles
|
* Page Layout Styles & Repsonsive Styles
|
||||||
*/
|
*/
|
||||||
/* Responsive width-content overrides */
|
/* Responsive width-content overrides */
|
||||||
.responsive-max-width {
|
.responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
|
||||||
|
.wp-block-pullquote.alignfull > p,
|
||||||
|
.wp-block-pullquote.alignwide blockquote,
|
||||||
|
.wp-block-pullquote.alignfull blockquote, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright),
|
||||||
|
.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
|
margin-right: auto;
|
||||||
|
margin-left: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 560px) {
|
@media only screen and (min-width: 560px) {
|
||||||
.responsive-max-width {
|
.responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
|
||||||
|
.wp-block-pullquote.alignfull > p,
|
||||||
|
.wp-block-pullquote.alignwide blockquote,
|
||||||
|
.wp-block-pullquote.alignfull blockquote, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright),
|
||||||
|
.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
|
||||||
max-width: calc( 560px - 32px);
|
max-width: calc( 560px - 32px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 640px) {
|
@media only screen and (min-width: 640px) {
|
||||||
.responsive-max-width {
|
.responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
|
||||||
|
.wp-block-pullquote.alignfull > p,
|
||||||
|
.wp-block-pullquote.alignwide blockquote,
|
||||||
|
.wp-block-pullquote.alignfull blockquote, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright),
|
||||||
|
.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
|
||||||
max-width: calc( 640px - 32px);
|
max-width: calc( 640px - 32px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 782px) {
|
@media only screen and (min-width: 782px) {
|
||||||
.responsive-max-width {
|
.responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
|
||||||
|
.wp-block-pullquote.alignfull > p,
|
||||||
|
.wp-block-pullquote.alignwide blockquote,
|
||||||
|
.wp-block-pullquote.alignfull blockquote, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright),
|
||||||
|
.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
|
||||||
max-width: calc( 782px - 32px);
|
max-width: calc( 782px - 32px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 1024px) {
|
@media only screen and (min-width: 1024px) {
|
||||||
.responsive-max-width {
|
.responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
|
||||||
|
.wp-block-pullquote.alignfull > p,
|
||||||
|
.wp-block-pullquote.alignwide blockquote,
|
||||||
|
.wp-block-pullquote.alignfull blockquote, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright),
|
||||||
|
.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
|
||||||
max-width: calc( 782px - 32px);
|
max-width: calc( 782px - 32px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 1280px) {
|
@media only screen and (min-width: 1280px) {
|
||||||
.responsive-max-width {
|
.responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
|
||||||
|
.wp-block-pullquote.alignfull > p,
|
||||||
|
.wp-block-pullquote.alignwide blockquote,
|
||||||
|
.wp-block-pullquote.alignfull blockquote, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright),
|
||||||
|
.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
|
||||||
max-width: calc( 782px - 32px);
|
max-width: calc( 782px - 32px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-group.alignwide .alignwide,
|
.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
||||||
.wp-block-group.alignwide .alignfull,
|
width: calc(100% + 256px);
|
||||||
.wp-block-group.alignfull .alignwide, .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
max-width: calc(100vw - 32px);
|
||||||
margin-right: calc( -0.25 * ( 100vw - 100% ));
|
margin-right: auto;
|
||||||
margin-left: calc( -0.25 * ( 100vw - 100% ));
|
margin-left: auto;
|
||||||
width: calc( 100% + (0.25 * 2) * ( 100vw - 100% ));
|
|
||||||
max-width: calc( 100% + (0.25 * 2) * ( 100vw - 100% ));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 560px) {
|
@media only screen and (min-width: 560px) {
|
||||||
.wp-block-group.alignwide .alignwide,
|
.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
||||||
.wp-block-group.alignwide .alignfull,
|
width: calc(calc( 560px - 32px) + 256px);
|
||||||
.wp-block-group.alignfull .alignwide, .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
max-width: calc(100vw - 32px);
|
||||||
margin-right: calc( -0.25 * ( 100vw - calc( 560px - 32px) ));
|
|
||||||
margin-left: calc( -0.25 * ( 100vw - calc( 560px - 32px) ));
|
|
||||||
width: calc( calc( 560px - 32px) + (0.25 * 2) * ( 100vw - calc( 560px - 32px) ));
|
|
||||||
max-width: calc( calc( 560px - 32px) + (0.25 * 2) * ( 100vw - calc( 560px - 32px) ));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 640px) {
|
@media only screen and (min-width: 640px) {
|
||||||
.wp-block-group.alignwide .alignwide,
|
.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
||||||
.wp-block-group.alignwide .alignfull,
|
width: calc(calc( 640px - 32px) + 256px);
|
||||||
.wp-block-group.alignfull .alignwide, .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
max-width: calc(100vw - 32px);
|
||||||
margin-right: calc( -0.25 * ( 100vw - calc( 640px - 32px) ));
|
|
||||||
margin-left: calc( -0.25 * ( 100vw - calc( 640px - 32px) ));
|
|
||||||
width: calc( calc( 640px - 32px) + (0.25 * 2) * ( 100vw - calc( 640px - 32px) ));
|
|
||||||
max-width: calc( calc( 640px - 32px) + (0.25 * 2) * ( 100vw - calc( 640px - 32px) ));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 782px) {
|
@media only screen and (min-width: 782px) {
|
||||||
.wp-block-group.alignwide .alignwide,
|
.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
||||||
.wp-block-group.alignwide .alignfull,
|
|
||||||
.wp-block-group.alignfull .alignwide, .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
|
||||||
margin-right: calc( -0.25 * ( 100vw - calc( 782px - 32px) ));
|
|
||||||
margin-left: calc( -0.25 * ( 100vw - calc( 782px - 32px) ));
|
|
||||||
width: calc( calc( 782px - 32px) + (0.25 * 2) * ( 100vw - calc( 782px - 32px) ));
|
|
||||||
max-width: calc( calc( 782px - 32px) + (0.25 * 2) * ( 100vw - calc( 782px - 32px) ));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width: 1024px) {
|
|
||||||
.wp-block-group.alignwide .alignwide,
|
|
||||||
.wp-block-group.alignwide .alignfull,
|
|
||||||
.wp-block-group.alignfull .alignwide, .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
|
||||||
margin-right: -128px;
|
|
||||||
margin-left: -128px;
|
|
||||||
width: calc(calc( 782px - 32px) + 256px);
|
width: calc(calc( 782px - 32px) + 256px);
|
||||||
max-width: calc(calc( 782px - 32px) + 256px);
|
max-width: calc(100vw - 32px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 1280px) {
|
@media only screen and (min-width: 1024px) {
|
||||||
.wp-block-group.alignwide .alignwide,
|
.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
||||||
.wp-block-group.alignwide .alignfull,
|
|
||||||
.wp-block-group.alignfull .alignwide, .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
|
||||||
margin-right: -128px;
|
|
||||||
margin-left: -128px;
|
|
||||||
width: calc(calc( 782px - 32px) + 256px);
|
width: calc(calc( 782px - 32px) + 256px);
|
||||||
max-width: calc(calc( 782px - 32px) + 256px);
|
max-width: calc(100vw - 32px);
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
|
|
||||||
margin-right: calc( -0.5 * ( 100vw - 100% ));
|
|
||||||
margin-left: calc( -0.5 * ( 100vw - 100% ));
|
|
||||||
width: calc( 100% + (0.5 * 2) * ( 100vw - 100% ));
|
|
||||||
max-width: calc( 100% + (0.5 * 2) * ( 100vw - 100% ));
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width: 560px) {
|
|
||||||
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
|
|
||||||
margin-right: calc( -0.5 * ( 100vw - calc( 560px - 32px) ));
|
|
||||||
margin-left: calc( -0.5 * ( 100vw - calc( 560px - 32px) ));
|
|
||||||
width: calc( calc( 560px - 32px) + (0.5 * 2) * ( 100vw - calc( 560px - 32px) ));
|
|
||||||
max-width: calc( calc( 560px - 32px) + (0.5 * 2) * ( 100vw - calc( 560px - 32px) ));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width: 640px) {
|
|
||||||
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
|
|
||||||
margin-right: calc( -0.5 * ( 100vw - calc( 640px - 32px) ));
|
|
||||||
margin-left: calc( -0.5 * ( 100vw - calc( 640px - 32px) ));
|
|
||||||
width: calc( calc( 640px - 32px) + (0.5 * 2) * ( 100vw - calc( 640px - 32px) ));
|
|
||||||
max-width: calc( calc( 640px - 32px) + (0.5 * 2) * ( 100vw - calc( 640px - 32px) ));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width: 782px) {
|
|
||||||
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
|
|
||||||
margin-right: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
|
||||||
margin-left: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
|
||||||
width: calc( calc( 782px - 32px) + (0.5 * 2) * ( 100vw - calc( 782px - 32px) ));
|
|
||||||
max-width: calc( calc( 782px - 32px) + (0.5 * 2) * ( 100vw - calc( 782px - 32px) ));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width: 1024px) {
|
|
||||||
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
|
|
||||||
margin-right: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
|
||||||
margin-left: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
|
||||||
width: calc( calc( 782px - 32px) + (0.5 * 2) * ( 100vw - calc( 782px - 32px) ));
|
|
||||||
max-width: calc( calc( 782px - 32px) + (0.5 * 2) * ( 100vw - calc( 782px - 32px) ));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 1280px) {
|
@media only screen and (min-width: 1280px) {
|
||||||
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
|
.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
||||||
margin-right: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
width: calc(calc( 782px - 32px) + 256px);
|
||||||
margin-left: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
max-width: calc(100vw - 32px);
|
||||||
width: calc( calc( 782px - 32px) + (0.5 * 2) * ( 100vw - calc( 782px - 32px) ));
|
|
||||||
max-width: calc( calc( 782px - 32px) + (0.5 * 2) * ( 100vw - calc( 782px - 32px) ));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-cover.alignwide .wp-block-cover__inner-container,
|
.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
|
||||||
.wp-block-cover.alignwide .wp-block-cover-image-text,
|
width: calc(100% + 256px);
|
||||||
.wp-block-cover.alignwide .wp-block-cover-text, .wp-block-cover.alignfull .wp-block-cover__inner-container,
|
max-width: 100%;
|
||||||
.wp-block-cover.alignfull .wp-block-cover-image-text,
|
margin-right: auto;
|
||||||
.wp-block-cover.alignfull .wp-block-cover-text,
|
margin-left: auto;
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover__inner-container,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover-text,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover__inner-container,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover-text, .wp-block-group.alignwide .wp-block-group__inner-container,
|
|
||||||
.wp-block-group.alignfull .wp-block-group__inner-container, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
|
|
||||||
.wp-block-pullquote.alignfull > p,
|
|
||||||
.wp-block-pullquote.alignwide blockquote,
|
|
||||||
.wp-block-pullquote.alignfull blockquote, .entry-content .wp-audio-shortcode {
|
|
||||||
max-width: calc( calc( 100% - 32px));
|
|
||||||
width: calc( calc( 100% - 32px));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 560px) {
|
@media only screen and (min-width: 560px) {
|
||||||
.wp-block-cover.alignwide .wp-block-cover__inner-container,
|
.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
|
||||||
.wp-block-cover.alignwide .wp-block-cover-image-text,
|
width: calc(calc( 560px - 32px) + 256px);
|
||||||
.wp-block-cover.alignwide .wp-block-cover-text, .wp-block-cover.alignfull .wp-block-cover__inner-container,
|
max-width: 100%;
|
||||||
.wp-block-cover.alignfull .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover.alignfull .wp-block-cover-text,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover__inner-container,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover-text,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover__inner-container,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover-text, .wp-block-group.alignwide .wp-block-group__inner-container,
|
|
||||||
.wp-block-group.alignfull .wp-block-group__inner-container, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
|
|
||||||
.wp-block-pullquote.alignfull > p,
|
|
||||||
.wp-block-pullquote.alignwide blockquote,
|
|
||||||
.wp-block-pullquote.alignfull blockquote, .entry-content .wp-audio-shortcode {
|
|
||||||
max-width: calc( calc( 560px - 32px));
|
|
||||||
width: calc( calc( 560px - 32px));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 640px) {
|
@media only screen and (min-width: 640px) {
|
||||||
.wp-block-cover.alignwide .wp-block-cover__inner-container,
|
.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
|
||||||
.wp-block-cover.alignwide .wp-block-cover-image-text,
|
width: calc(calc( 640px - 32px) + 256px);
|
||||||
.wp-block-cover.alignwide .wp-block-cover-text, .wp-block-cover.alignfull .wp-block-cover__inner-container,
|
max-width: 100%;
|
||||||
.wp-block-cover.alignfull .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover.alignfull .wp-block-cover-text,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover__inner-container,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover-text,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover__inner-container,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover-text, .wp-block-group.alignwide .wp-block-group__inner-container,
|
|
||||||
.wp-block-group.alignfull .wp-block-group__inner-container, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
|
|
||||||
.wp-block-pullquote.alignfull > p,
|
|
||||||
.wp-block-pullquote.alignwide blockquote,
|
|
||||||
.wp-block-pullquote.alignfull blockquote, .entry-content .wp-audio-shortcode {
|
|
||||||
max-width: calc( calc( 640px - 32px));
|
|
||||||
width: calc( calc( 640px - 32px));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 782px) {
|
@media only screen and (min-width: 782px) {
|
||||||
.wp-block-cover.alignwide .wp-block-cover__inner-container,
|
.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
|
||||||
.wp-block-cover.alignwide .wp-block-cover-image-text,
|
width: calc(calc( 782px - 32px) + 256px);
|
||||||
.wp-block-cover.alignwide .wp-block-cover-text, .wp-block-cover.alignfull .wp-block-cover__inner-container,
|
max-width: 100%;
|
||||||
.wp-block-cover.alignfull .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover.alignfull .wp-block-cover-text,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover__inner-container,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover-text,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover__inner-container,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover-text, .wp-block-group.alignwide .wp-block-group__inner-container,
|
|
||||||
.wp-block-group.alignfull .wp-block-group__inner-container, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
|
|
||||||
.wp-block-pullquote.alignfull > p,
|
|
||||||
.wp-block-pullquote.alignwide blockquote,
|
|
||||||
.wp-block-pullquote.alignfull blockquote, .entry-content .wp-audio-shortcode {
|
|
||||||
max-width: calc( calc( 782px - 32px));
|
|
||||||
width: calc( calc( 782px - 32px));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 1024px) {
|
@media only screen and (min-width: 1024px) {
|
||||||
.wp-block-cover.alignwide .wp-block-cover__inner-container,
|
.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
|
||||||
.wp-block-cover.alignwide .wp-block-cover-image-text,
|
width: calc(calc( 782px - 32px) + 256px);
|
||||||
.wp-block-cover.alignwide .wp-block-cover-text, .wp-block-cover.alignfull .wp-block-cover__inner-container,
|
max-width: 100%;
|
||||||
.wp-block-cover.alignfull .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover.alignfull .wp-block-cover-text,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover__inner-container,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover-text,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover__inner-container,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover-text, .wp-block-group.alignwide .wp-block-group__inner-container,
|
|
||||||
.wp-block-group.alignfull .wp-block-group__inner-container, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
|
|
||||||
.wp-block-pullquote.alignfull > p,
|
|
||||||
.wp-block-pullquote.alignwide blockquote,
|
|
||||||
.wp-block-pullquote.alignfull blockquote, .entry-content .wp-audio-shortcode {
|
|
||||||
max-width: calc( calc( 782px - 32px));
|
|
||||||
width: calc( calc( 782px - 32px));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 1280px) {
|
@media only screen and (min-width: 1280px) {
|
||||||
.wp-block-cover.alignwide .wp-block-cover__inner-container,
|
.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
|
||||||
.wp-block-cover.alignwide .wp-block-cover-image-text,
|
width: calc(calc( 782px - 32px) + 256px);
|
||||||
.wp-block-cover.alignwide .wp-block-cover-text, .wp-block-cover.alignfull .wp-block-cover__inner-container,
|
max-width: 100%;
|
||||||
.wp-block-cover.alignfull .wp-block-cover-image-text,
|
}
|
||||||
.wp-block-cover.alignfull .wp-block-cover-text,
|
}
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover__inner-container,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover-image-text,
|
.entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover-text,
|
/* Letting the box-model do all the work here. */
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover__inner-container,
|
}
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover-text, .wp-block-group.alignwide .wp-block-group__inner-container,
|
.alignright {
|
||||||
.wp-block-group.alignfull .wp-block-group__inner-container, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
|
margin-right: 16px;
|
||||||
.wp-block-pullquote.alignfull > p,
|
}
|
||||||
.wp-block-pullquote.alignwide blockquote,
|
|
||||||
.wp-block-pullquote.alignfull blockquote, .entry-content .wp-audio-shortcode {
|
@media only screen and (min-width: 560px) {
|
||||||
max-width: calc( calc( 782px - 32px));
|
.alignright {
|
||||||
width: calc( calc( 782px - 32px));
|
margin-right: calc( 0.5 * (100vw - calc( 560px - 32px)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 640px) {
|
||||||
|
.alignright {
|
||||||
|
margin-right: calc( 0.5 * (100vw - calc( 640px - 32px)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 782px) {
|
||||||
|
.alignright {
|
||||||
|
margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 1024px) {
|
||||||
|
.alignright {
|
||||||
|
margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 1280px) {
|
||||||
|
.alignright {
|
||||||
|
margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.alignleft {
|
||||||
|
margin-left: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 560px) {
|
||||||
|
.alignleft {
|
||||||
|
margin-left: calc( 0.5 * (100vw - calc( 560px - 32px)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 640px) {
|
||||||
|
.alignleft {
|
||||||
|
margin-left: calc( 0.5 * (100vw - calc( 640px - 32px)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 782px) {
|
||||||
|
.alignleft {
|
||||||
|
margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 1024px) {
|
||||||
|
.alignleft {
|
||||||
|
margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 1280px) {
|
||||||
|
.alignleft {
|
||||||
|
margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3399,6 +3412,14 @@ a:hover, a:focus {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.main-navigation > div > ul > li:first-of-type {
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-navigation > div > ul > li:last-of-type {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.main-navigation {
|
.main-navigation {
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
|
@ -128,17 +128,9 @@ $grid-configuration: map-extend($grid-configuration-default, $grid-configuration
|
||||||
* Responsive breakpoints
|
* Responsive breakpoints
|
||||||
* - breakpoints values are defined in _config-global.scss
|
* - breakpoints values are defined in _config-global.scss
|
||||||
*/
|
*/
|
||||||
/**
|
|
||||||
* Align widths
|
|
||||||
* - Sets negative margin for .alignwide and .alignfull blocks
|
|
||||||
*/
|
|
||||||
/**
|
/**
|
||||||
* Align wide widths
|
* Align wide widths
|
||||||
* - Sets negative margin for .alignwide and .alignfull blocks
|
* - Sets .alignwide widths
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Align container widths
|
|
||||||
* - Sets a fixed-width on content within alignwide and alignfull blocks
|
|
||||||
*/
|
*/
|
||||||
/**
|
/**
|
||||||
* Crop Text Boundry
|
* Crop Text Boundry
|
||||||
|
@ -818,6 +810,7 @@ footer {
|
||||||
.site-footer > *,
|
.site-footer > *,
|
||||||
.site-main > article > *,
|
.site-main > article > *,
|
||||||
.entry-content > *,
|
.entry-content > *,
|
||||||
|
[class*="inner-container"] > *,
|
||||||
.widget-area > * {
|
.widget-area > * {
|
||||||
margin-top: 21.312px;
|
margin-top: 21.312px;
|
||||||
margin-bottom: 21.312px;
|
margin-bottom: 21.312px;
|
||||||
|
@ -827,6 +820,7 @@ footer {
|
||||||
.site-footer > *,
|
.site-footer > *,
|
||||||
.site-main > article > *,
|
.site-main > article > *,
|
||||||
.entry-content > *,
|
.entry-content > *,
|
||||||
|
[class*="inner-container"] > *,
|
||||||
.widget-area > * {
|
.widget-area > * {
|
||||||
margin-top: 32px;
|
margin-top: 32px;
|
||||||
margin-bottom: 32px;
|
margin-bottom: 32px;
|
||||||
|
@ -836,6 +830,7 @@ footer {
|
||||||
.site-footer > *:first-child,
|
.site-footer > *:first-child,
|
||||||
.site-main > article > *:first-child,
|
.site-main > article > *:first-child,
|
||||||
.entry-content > *:first-child,
|
.entry-content > *:first-child,
|
||||||
|
[class*="inner-container"] > *:first-child,
|
||||||
.widget-area > *:first-child {
|
.widget-area > *:first-child {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
@ -843,6 +838,7 @@ footer {
|
||||||
.site-footer > *:last-child,
|
.site-footer > *:last-child,
|
||||||
.site-main > article > *:last-child,
|
.site-main > article > *:last-child,
|
||||||
.entry-content > *:last-child,
|
.entry-content > *:last-child,
|
||||||
|
[class*="inner-container"] > *:last-child,
|
||||||
.widget-area > *:last-child {
|
.widget-area > *:last-child {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
@ -1230,7 +1226,6 @@ input.has-focus[type="submit"],
|
||||||
.wp-block-cover-image .wp-block-cover__inner-container,
|
.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-image-text,
|
||||||
.wp-block-cover-image .wp-block-cover-text {
|
.wp-block-cover-image .wp-block-cover-text {
|
||||||
width: calc(100% - 32px);
|
|
||||||
color: white;
|
color: white;
|
||||||
margin-top: 32px;
|
margin-top: 32px;
|
||||||
margin-bottom: 32px;
|
margin-bottom: 32px;
|
||||||
|
@ -1270,6 +1265,35 @@ input.has-focus[type="submit"],
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.wp-block-cover .wp-block-cover__inner-container,
|
||||||
|
.wp-block-cover-image .wp-block-cover__inner-container {
|
||||||
|
width: calc(100% - 64px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.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.alignleft, .wp-block-cover.alignright,
|
||||||
.wp-block-cover-image.alignleft,
|
.wp-block-cover-image.alignleft,
|
||||||
.wp-block-cover-image.alignright {
|
.wp-block-cover-image.alignright {
|
||||||
|
@ -1337,49 +1361,34 @@ input.has-focus[type="submit"],
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-group .wp-block-group__inner-container h1, .wp-block-group .wp-block-group__inner-container h2, .wp-block-group .wp-block-group__inner-container h3, .wp-block-group .wp-block-group__inner-container h4, .wp-block-group .wp-block-group__inner-container h5, .wp-block-group .wp-block-group__inner-container h6, .wp-block-group .wp-block-group__inner-container p, .wp-block-group .wp-block-group__inner-container hr {
|
.wp-block-group .wp-block-group__inner-container > * {
|
||||||
margin-top: 16px;
|
margin-top: 21.312px;
|
||||||
margin-bottom: 16px;
|
margin-bottom: 21.312px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-group .wp-block-group__inner-container h1:first-child, .wp-block-group .wp-block-group__inner-container h2:first-child, .wp-block-group .wp-block-group__inner-container h3:first-child, .wp-block-group .wp-block-group__inner-container h4:first-child, .wp-block-group .wp-block-group__inner-container h5:first-child, .wp-block-group .wp-block-group__inner-container h6:first-child, .wp-block-group .wp-block-group__inner-container p:first-child, .wp-block-group .wp-block-group__inner-container hr:first-child {
|
@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;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-group .wp-block-group__inner-container h1:last-child, .wp-block-group .wp-block-group__inner-container h2:last-child, .wp-block-group .wp-block-group__inner-container h3:last-child, .wp-block-group .wp-block-group__inner-container h4:last-child, .wp-block-group .wp-block-group__inner-container h5:last-child, .wp-block-group .wp-block-group__inner-container h6:last-child, .wp-block-group .wp-block-group__inner-container p:last-child, .wp-block-group .wp-block-group__inner-container hr:last-child {
|
.wp-block-group .wp-block-group__inner-container > *:last-child {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-group.alignwide .alignwide,
|
|
||||||
.wp-block-group.alignwide .alignfull,
|
|
||||||
.wp-block-group.alignfull .alignwide {
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
|
|
||||||
.wp-block-group.alignfull .alignfull {
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
|
|
||||||
.wp-block-group.has-background {
|
.wp-block-group.has-background {
|
||||||
padding: 16px;
|
padding: 21.312px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-group.has-background.alignwide > .wp-block-group__inner-container > .alignwide:first-of-type,
|
@media only screen and (min-width: 560px) {
|
||||||
.wp-block-group.has-background.alignwide > .wp-block-group__inner-container > .alignfull:first-of-type {
|
.wp-block-group.has-background {
|
||||||
margin-top: -16px;
|
padding: 32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-group.has-background.alignwide > .wp-block-group__inner-container > .alignwide:last-of-type,
|
|
||||||
.wp-block-group.has-background.alignwide > .wp-block-group__inner-container > .alignfull:last-of-type {
|
|
||||||
margin-bottom: -16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.wp-block-group.has-background.alignfull > .wp-block-group__inner-container > .alignfull:first-of-type {
|
|
||||||
margin-top: -16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.wp-block-group.has-background.alignfull > .wp-block-group__inner-container > .alignfull:last-of-type {
|
|
||||||
margin-bottom: -16px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
h1, .h1,
|
h1, .h1,
|
||||||
|
@ -1437,6 +1446,17 @@ h6, .h6 {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.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;
|
||||||
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
height: auto;
|
height: auto;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
|
@ -1594,20 +1614,32 @@ dd {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-media-text .wp-block-media-text__content {
|
.wp-block-media-text .wp-block-media-text__content {
|
||||||
padding-left: 16px;
|
padding: 16px;
|
||||||
padding-right: 16px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-media-text .wp-block-media-text__content h1, .wp-block-media-text .wp-block-media-text__content h2, .wp-block-media-text .wp-block-media-text__content h3, .wp-block-media-text .wp-block-media-text__content h4, .wp-block-media-text .wp-block-media-text__content h5, .wp-block-media-text .wp-block-media-text__content h6, .wp-block-media-text .wp-block-media-text__content p, .wp-block-media-text .wp-block-media-text__content hr {
|
@media only screen and (min-width: 640px) {
|
||||||
margin-top: 16px;
|
.wp-block-media-text .wp-block-media-text__content {
|
||||||
margin-bottom: 16px;
|
padding: 32px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-media-text .wp-block-media-text__content h1:first-child, .wp-block-media-text .wp-block-media-text__content h2:first-child, .wp-block-media-text .wp-block-media-text__content h3:first-child, .wp-block-media-text .wp-block-media-text__content h4:first-child, .wp-block-media-text .wp-block-media-text__content h5:first-child, .wp-block-media-text .wp-block-media-text__content h6:first-child, .wp-block-media-text .wp-block-media-text__content p:first-child, .wp-block-media-text .wp-block-media-text__content hr:first-child {
|
.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;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-media-text .wp-block-media-text__content h1:last-child, .wp-block-media-text .wp-block-media-text__content h2:last-child, .wp-block-media-text .wp-block-media-text__content h3:last-child, .wp-block-media-text .wp-block-media-text__content h4:last-child, .wp-block-media-text .wp-block-media-text__content h5:last-child, .wp-block-media-text .wp-block-media-text__content h6:last-child, .wp-block-media-text .wp-block-media-text__content p:last-child, .wp-block-media-text .wp-block-media-text__content hr:last-child {
|
.wp-block-media-text .wp-block-media-text__content > *:last-child {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1615,15 +1647,11 @@ dd {
|
||||||
color: currentColor;
|
color: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 560px) {
|
||||||
.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
|
.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
|
||||||
padding-top: 32px;
|
padding-top: 32px;
|
||||||
padding-bottom: 32px;
|
padding-bottom: 32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 640px) {
|
|
||||||
.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
|
|
||||||
padding: 0 16px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
p.has-background {
|
p.has-background {
|
||||||
|
@ -1743,6 +1771,10 @@ p.has-background:not(.has-background-background-color) a {
|
||||||
background: none;
|
background: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.wp-block-pullquote:not(.is-style-solid-color) blockquote {
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.wp-block-pullquote.is-style-default.alignleft blockquote > *, .wp-block-pullquote.is-style-default.aligncenter blockquote > *, .wp-block-pullquote.is-style-default.alignright blockquote > * {
|
.wp-block-pullquote.is-style-default.alignleft blockquote > *, .wp-block-pullquote.is-style-default.aligncenter blockquote > *, .wp-block-pullquote.is-style-default.alignright blockquote > * {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
@ -1928,8 +1960,6 @@ table th,
|
||||||
text-align: left;
|
text-align: left;
|
||||||
/*rtl:ignore*/
|
/*rtl:ignore*/
|
||||||
float: left;
|
float: left;
|
||||||
/*rtl:ignore*/
|
|
||||||
margin-right: 16px;
|
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin-bottom: 32px;
|
margin-bottom: 32px;
|
||||||
}
|
}
|
||||||
|
@ -1949,11 +1979,24 @@ table th,
|
||||||
margin-bottom: 32px;
|
margin-bottom: 32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.entry-content > .alignwide {
|
/**
|
||||||
|
* .aligndefault
|
||||||
|
*/
|
||||||
|
.entry-content [class*="inner-container"] {
|
||||||
|
max-width: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* .alignwide
|
||||||
|
*/
|
||||||
|
.alignwide {
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
|
|
||||||
.entry-content > .alignfull {
|
/**
|
||||||
|
* .alignfull
|
||||||
|
*/
|
||||||
|
.alignfull {
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2082,7 +2125,7 @@ table th,
|
||||||
.has-regular-font-size,
|
.has-regular-font-size,
|
||||||
.has-normal-font-size,
|
.has-normal-font-size,
|
||||||
.has-medium-font-size {
|
.has-medium-font-size {
|
||||||
font-size: 1.2rem;
|
font-size: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.is-large-text,
|
.is-large-text,
|
||||||
|
@ -2321,8 +2364,8 @@ table th,
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
|
margin: 0;
|
||||||
max-width: none;
|
max-width: none;
|
||||||
margin: 0 -10px;
|
|
||||||
position: relative;
|
position: relative;
|
||||||
/* Sub-menus Flyout */
|
/* Sub-menus Flyout */
|
||||||
}
|
}
|
||||||
|
@ -2368,6 +2411,14 @@ table th,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.main-navigation > div > ul > li:first-of-type {
|
||||||
|
margin-left: -16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-navigation > div > ul > li:last-of-type {
|
||||||
|
margin-right: -16px;
|
||||||
|
}
|
||||||
|
|
||||||
.main-navigation > div > ul > li > a {
|
.main-navigation > div > ul > li > a {
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
}
|
}
|
||||||
|
@ -2470,7 +2521,15 @@ table th,
|
||||||
align-content: center;
|
align-content: center;
|
||||||
display: flex;
|
display: flex;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
margin: 0 calc(-0.5 * 16px);
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.social-navigation > div > ul > li:first-of-type {
|
||||||
|
margin-left: calc(-0.5 * 16px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.social-navigation > div > ul > li:last-of-type {
|
||||||
|
margin-right: calc(-0.5 * 16px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.social-navigation a {
|
.social-navigation a {
|
||||||
|
@ -2488,6 +2547,10 @@ table th,
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.site-footer {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 640px) {
|
@media only screen and (min-width: 640px) {
|
||||||
.site-footer {
|
.site-footer {
|
||||||
align-items: flex-end;
|
align-items: flex-end;
|
||||||
|
@ -2548,9 +2611,8 @@ table th,
|
||||||
|
|
||||||
.footer-navigation .footer-menu {
|
.footer-navigation .footer-menu {
|
||||||
color: #767676;
|
color: #767676;
|
||||||
|
margin: 0;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
margin-left: -16px;
|
|
||||||
margin-right: -16px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 640px) {
|
@media only screen and (min-width: 640px) {
|
||||||
|
@ -2561,10 +2623,18 @@ table th,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer-navigation .footer-menu li {
|
.footer-navigation .footer-menu > li {
|
||||||
display: inline;
|
display: inline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.footer-navigation .footer-menu > li:first-of-type {
|
||||||
|
margin-left: -16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-navigation .footer-menu > li:last-of-type {
|
||||||
|
margin-right: -16px;
|
||||||
|
}
|
||||||
|
|
||||||
.footer-navigation .footer-menu a {
|
.footer-navigation .footer-menu a {
|
||||||
font-family: "Work Sans", sans-serif;
|
font-family: "Work Sans", sans-serif;
|
||||||
font-size: 0.83333rem;
|
font-size: 0.83333rem;
|
||||||
|
@ -3060,277 +3130,231 @@ img#wpstats {
|
||||||
* Page Layout Styles & Repsonsive Styles
|
* Page Layout Styles & Repsonsive Styles
|
||||||
*/
|
*/
|
||||||
/* Responsive width-content overrides */
|
/* Responsive width-content overrides */
|
||||||
.responsive-max-width {
|
.responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
|
||||||
|
.wp-block-pullquote.alignfull > p,
|
||||||
|
.wp-block-pullquote.alignwide blockquote,
|
||||||
|
.wp-block-pullquote.alignfull blockquote, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright),
|
||||||
|
.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 560px) {
|
@media only screen and (min-width: 560px) {
|
||||||
.responsive-max-width {
|
.responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
|
||||||
|
.wp-block-pullquote.alignfull > p,
|
||||||
|
.wp-block-pullquote.alignwide blockquote,
|
||||||
|
.wp-block-pullquote.alignfull blockquote, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright),
|
||||||
|
.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
|
||||||
max-width: calc( 560px - 32px);
|
max-width: calc( 560px - 32px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 640px) {
|
@media only screen and (min-width: 640px) {
|
||||||
.responsive-max-width {
|
.responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
|
||||||
|
.wp-block-pullquote.alignfull > p,
|
||||||
|
.wp-block-pullquote.alignwide blockquote,
|
||||||
|
.wp-block-pullquote.alignfull blockquote, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright),
|
||||||
|
.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
|
||||||
max-width: calc( 640px - 32px);
|
max-width: calc( 640px - 32px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 782px) {
|
@media only screen and (min-width: 782px) {
|
||||||
.responsive-max-width {
|
.responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
|
||||||
|
.wp-block-pullquote.alignfull > p,
|
||||||
|
.wp-block-pullquote.alignwide blockquote,
|
||||||
|
.wp-block-pullquote.alignfull blockquote, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright),
|
||||||
|
.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
|
||||||
max-width: calc( 782px - 32px);
|
max-width: calc( 782px - 32px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 1024px) {
|
@media only screen and (min-width: 1024px) {
|
||||||
.responsive-max-width {
|
.responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
|
||||||
|
.wp-block-pullquote.alignfull > p,
|
||||||
|
.wp-block-pullquote.alignwide blockquote,
|
||||||
|
.wp-block-pullquote.alignfull blockquote, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright),
|
||||||
|
.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
|
||||||
max-width: calc( 782px - 32px);
|
max-width: calc( 782px - 32px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 1280px) {
|
@media only screen and (min-width: 1280px) {
|
||||||
.responsive-max-width {
|
.responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
|
||||||
|
.wp-block-pullquote.alignfull > p,
|
||||||
|
.wp-block-pullquote.alignwide blockquote,
|
||||||
|
.wp-block-pullquote.alignfull blockquote, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright),
|
||||||
|
.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
|
||||||
max-width: calc( 782px - 32px);
|
max-width: calc( 782px - 32px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-group.alignwide .alignwide,
|
.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
||||||
.wp-block-group.alignwide .alignfull,
|
width: calc(100% + 256px);
|
||||||
.wp-block-group.alignfull .alignwide, .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
max-width: calc(100vw - 32px);
|
||||||
margin-left: calc( -0.25 * ( 100vw - 100% ));
|
margin-left: auto;
|
||||||
margin-right: calc( -0.25 * ( 100vw - 100% ));
|
margin-right: auto;
|
||||||
width: calc( 100% + (0.25 * 2) * ( 100vw - 100% ));
|
|
||||||
max-width: calc( 100% + (0.25 * 2) * ( 100vw - 100% ));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 560px) {
|
@media only screen and (min-width: 560px) {
|
||||||
.wp-block-group.alignwide .alignwide,
|
.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
||||||
.wp-block-group.alignwide .alignfull,
|
width: calc(calc( 560px - 32px) + 256px);
|
||||||
.wp-block-group.alignfull .alignwide, .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
max-width: calc(100vw - 32px);
|
||||||
margin-left: calc( -0.25 * ( 100vw - calc( 560px - 32px) ));
|
|
||||||
margin-right: calc( -0.25 * ( 100vw - calc( 560px - 32px) ));
|
|
||||||
width: calc( calc( 560px - 32px) + (0.25 * 2) * ( 100vw - calc( 560px - 32px) ));
|
|
||||||
max-width: calc( calc( 560px - 32px) + (0.25 * 2) * ( 100vw - calc( 560px - 32px) ));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 640px) {
|
@media only screen and (min-width: 640px) {
|
||||||
.wp-block-group.alignwide .alignwide,
|
.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
||||||
.wp-block-group.alignwide .alignfull,
|
width: calc(calc( 640px - 32px) + 256px);
|
||||||
.wp-block-group.alignfull .alignwide, .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
max-width: calc(100vw - 32px);
|
||||||
margin-left: calc( -0.25 * ( 100vw - calc( 640px - 32px) ));
|
|
||||||
margin-right: calc( -0.25 * ( 100vw - calc( 640px - 32px) ));
|
|
||||||
width: calc( calc( 640px - 32px) + (0.25 * 2) * ( 100vw - calc( 640px - 32px) ));
|
|
||||||
max-width: calc( calc( 640px - 32px) + (0.25 * 2) * ( 100vw - calc( 640px - 32px) ));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 782px) {
|
@media only screen and (min-width: 782px) {
|
||||||
.wp-block-group.alignwide .alignwide,
|
.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
||||||
.wp-block-group.alignwide .alignfull,
|
|
||||||
.wp-block-group.alignfull .alignwide, .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
|
||||||
margin-left: calc( -0.25 * ( 100vw - calc( 782px - 32px) ));
|
|
||||||
margin-right: calc( -0.25 * ( 100vw - calc( 782px - 32px) ));
|
|
||||||
width: calc( calc( 782px - 32px) + (0.25 * 2) * ( 100vw - calc( 782px - 32px) ));
|
|
||||||
max-width: calc( calc( 782px - 32px) + (0.25 * 2) * ( 100vw - calc( 782px - 32px) ));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width: 1024px) {
|
|
||||||
.wp-block-group.alignwide .alignwide,
|
|
||||||
.wp-block-group.alignwide .alignfull,
|
|
||||||
.wp-block-group.alignfull .alignwide, .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
|
||||||
margin-left: -128px;
|
|
||||||
margin-right: -128px;
|
|
||||||
width: calc(calc( 782px - 32px) + 256px);
|
width: calc(calc( 782px - 32px) + 256px);
|
||||||
max-width: calc(calc( 782px - 32px) + 256px);
|
max-width: calc(100vw - 32px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 1280px) {
|
@media only screen and (min-width: 1024px) {
|
||||||
.wp-block-group.alignwide .alignwide,
|
.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
||||||
.wp-block-group.alignwide .alignfull,
|
|
||||||
.wp-block-group.alignfull .alignwide, .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
|
||||||
margin-left: -128px;
|
|
||||||
margin-right: -128px;
|
|
||||||
width: calc(calc( 782px - 32px) + 256px);
|
width: calc(calc( 782px - 32px) + 256px);
|
||||||
max-width: calc(calc( 782px - 32px) + 256px);
|
max-width: calc(100vw - 32px);
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
|
|
||||||
margin-left: calc( -0.5 * ( 100vw - 100% ));
|
|
||||||
margin-right: calc( -0.5 * ( 100vw - 100% ));
|
|
||||||
width: calc( 100% + (0.5 * 2) * ( 100vw - 100% ));
|
|
||||||
max-width: calc( 100% + (0.5 * 2) * ( 100vw - 100% ));
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width: 560px) {
|
|
||||||
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
|
|
||||||
margin-left: calc( -0.5 * ( 100vw - calc( 560px - 32px) ));
|
|
||||||
margin-right: calc( -0.5 * ( 100vw - calc( 560px - 32px) ));
|
|
||||||
width: calc( calc( 560px - 32px) + (0.5 * 2) * ( 100vw - calc( 560px - 32px) ));
|
|
||||||
max-width: calc( calc( 560px - 32px) + (0.5 * 2) * ( 100vw - calc( 560px - 32px) ));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width: 640px) {
|
|
||||||
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
|
|
||||||
margin-left: calc( -0.5 * ( 100vw - calc( 640px - 32px) ));
|
|
||||||
margin-right: calc( -0.5 * ( 100vw - calc( 640px - 32px) ));
|
|
||||||
width: calc( calc( 640px - 32px) + (0.5 * 2) * ( 100vw - calc( 640px - 32px) ));
|
|
||||||
max-width: calc( calc( 640px - 32px) + (0.5 * 2) * ( 100vw - calc( 640px - 32px) ));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width: 782px) {
|
|
||||||
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
|
|
||||||
margin-left: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
|
||||||
margin-right: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
|
||||||
width: calc( calc( 782px - 32px) + (0.5 * 2) * ( 100vw - calc( 782px - 32px) ));
|
|
||||||
max-width: calc( calc( 782px - 32px) + (0.5 * 2) * ( 100vw - calc( 782px - 32px) ));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width: 1024px) {
|
|
||||||
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
|
|
||||||
margin-left: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
|
||||||
margin-right: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
|
||||||
width: calc( calc( 782px - 32px) + (0.5 * 2) * ( 100vw - calc( 782px - 32px) ));
|
|
||||||
max-width: calc( calc( 782px - 32px) + (0.5 * 2) * ( 100vw - calc( 782px - 32px) ));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 1280px) {
|
@media only screen and (min-width: 1280px) {
|
||||||
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
|
.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
|
||||||
margin-left: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
width: calc(calc( 782px - 32px) + 256px);
|
||||||
margin-right: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
max-width: calc(100vw - 32px);
|
||||||
width: calc( calc( 782px - 32px) + (0.5 * 2) * ( 100vw - calc( 782px - 32px) ));
|
|
||||||
max-width: calc( calc( 782px - 32px) + (0.5 * 2) * ( 100vw - calc( 782px - 32px) ));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-cover.alignwide .wp-block-cover__inner-container,
|
.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
|
||||||
.wp-block-cover.alignwide .wp-block-cover-image-text,
|
width: calc(100% + 256px);
|
||||||
.wp-block-cover.alignwide .wp-block-cover-text, .wp-block-cover.alignfull .wp-block-cover__inner-container,
|
max-width: 100%;
|
||||||
.wp-block-cover.alignfull .wp-block-cover-image-text,
|
margin-left: auto;
|
||||||
.wp-block-cover.alignfull .wp-block-cover-text,
|
margin-right: auto;
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover__inner-container,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover-text,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover__inner-container,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover-text, .wp-block-group.alignwide .wp-block-group__inner-container,
|
|
||||||
.wp-block-group.alignfull .wp-block-group__inner-container, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
|
|
||||||
.wp-block-pullquote.alignfull > p,
|
|
||||||
.wp-block-pullquote.alignwide blockquote,
|
|
||||||
.wp-block-pullquote.alignfull blockquote, .entry-content .wp-audio-shortcode {
|
|
||||||
max-width: calc( calc( 100% - 32px));
|
|
||||||
width: calc( calc( 100% - 32px));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 560px) {
|
@media only screen and (min-width: 560px) {
|
||||||
.wp-block-cover.alignwide .wp-block-cover__inner-container,
|
.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
|
||||||
.wp-block-cover.alignwide .wp-block-cover-image-text,
|
width: calc(calc( 560px - 32px) + 256px);
|
||||||
.wp-block-cover.alignwide .wp-block-cover-text, .wp-block-cover.alignfull .wp-block-cover__inner-container,
|
max-width: 100%;
|
||||||
.wp-block-cover.alignfull .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover.alignfull .wp-block-cover-text,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover__inner-container,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover-text,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover__inner-container,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover-text, .wp-block-group.alignwide .wp-block-group__inner-container,
|
|
||||||
.wp-block-group.alignfull .wp-block-group__inner-container, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
|
|
||||||
.wp-block-pullquote.alignfull > p,
|
|
||||||
.wp-block-pullquote.alignwide blockquote,
|
|
||||||
.wp-block-pullquote.alignfull blockquote, .entry-content .wp-audio-shortcode {
|
|
||||||
max-width: calc( calc( 560px - 32px));
|
|
||||||
width: calc( calc( 560px - 32px));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 640px) {
|
@media only screen and (min-width: 640px) {
|
||||||
.wp-block-cover.alignwide .wp-block-cover__inner-container,
|
.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
|
||||||
.wp-block-cover.alignwide .wp-block-cover-image-text,
|
width: calc(calc( 640px - 32px) + 256px);
|
||||||
.wp-block-cover.alignwide .wp-block-cover-text, .wp-block-cover.alignfull .wp-block-cover__inner-container,
|
max-width: 100%;
|
||||||
.wp-block-cover.alignfull .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover.alignfull .wp-block-cover-text,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover__inner-container,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover-text,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover__inner-container,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover-text, .wp-block-group.alignwide .wp-block-group__inner-container,
|
|
||||||
.wp-block-group.alignfull .wp-block-group__inner-container, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
|
|
||||||
.wp-block-pullquote.alignfull > p,
|
|
||||||
.wp-block-pullquote.alignwide blockquote,
|
|
||||||
.wp-block-pullquote.alignfull blockquote, .entry-content .wp-audio-shortcode {
|
|
||||||
max-width: calc( calc( 640px - 32px));
|
|
||||||
width: calc( calc( 640px - 32px));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 782px) {
|
@media only screen and (min-width: 782px) {
|
||||||
.wp-block-cover.alignwide .wp-block-cover__inner-container,
|
.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
|
||||||
.wp-block-cover.alignwide .wp-block-cover-image-text,
|
width: calc(calc( 782px - 32px) + 256px);
|
||||||
.wp-block-cover.alignwide .wp-block-cover-text, .wp-block-cover.alignfull .wp-block-cover__inner-container,
|
max-width: 100%;
|
||||||
.wp-block-cover.alignfull .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover.alignfull .wp-block-cover-text,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover__inner-container,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover-text,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover__inner-container,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover-text, .wp-block-group.alignwide .wp-block-group__inner-container,
|
|
||||||
.wp-block-group.alignfull .wp-block-group__inner-container, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
|
|
||||||
.wp-block-pullquote.alignfull > p,
|
|
||||||
.wp-block-pullquote.alignwide blockquote,
|
|
||||||
.wp-block-pullquote.alignfull blockquote, .entry-content .wp-audio-shortcode {
|
|
||||||
max-width: calc( calc( 782px - 32px));
|
|
||||||
width: calc( calc( 782px - 32px));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 1024px) {
|
@media only screen and (min-width: 1024px) {
|
||||||
.wp-block-cover.alignwide .wp-block-cover__inner-container,
|
.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
|
||||||
.wp-block-cover.alignwide .wp-block-cover-image-text,
|
width: calc(calc( 782px - 32px) + 256px);
|
||||||
.wp-block-cover.alignwide .wp-block-cover-text, .wp-block-cover.alignfull .wp-block-cover__inner-container,
|
max-width: 100%;
|
||||||
.wp-block-cover.alignfull .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover.alignfull .wp-block-cover-text,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover__inner-container,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover-text,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover__inner-container,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover-text, .wp-block-group.alignwide .wp-block-group__inner-container,
|
|
||||||
.wp-block-group.alignfull .wp-block-group__inner-container, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
|
|
||||||
.wp-block-pullquote.alignfull > p,
|
|
||||||
.wp-block-pullquote.alignwide blockquote,
|
|
||||||
.wp-block-pullquote.alignfull blockquote, .entry-content .wp-audio-shortcode {
|
|
||||||
max-width: calc( calc( 782px - 32px));
|
|
||||||
width: calc( calc( 782px - 32px));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 1280px) {
|
@media only screen and (min-width: 1280px) {
|
||||||
.wp-block-cover.alignwide .wp-block-cover__inner-container,
|
.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
|
||||||
.wp-block-cover.alignwide .wp-block-cover-image-text,
|
width: calc(calc( 782px - 32px) + 256px);
|
||||||
.wp-block-cover.alignwide .wp-block-cover-text, .wp-block-cover.alignfull .wp-block-cover__inner-container,
|
max-width: 100%;
|
||||||
.wp-block-cover.alignfull .wp-block-cover-image-text,
|
}
|
||||||
.wp-block-cover.alignfull .wp-block-cover-text,
|
}
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover__inner-container,
|
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover-image-text,
|
.entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
|
||||||
.wp-block-cover-image.alignwide .wp-block-cover-text,
|
/* Letting the box-model do all the work here. */
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover__inner-container,
|
}
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover-image-text,
|
|
||||||
.wp-block-cover-image.alignfull .wp-block-cover-text, .wp-block-group.alignwide .wp-block-group__inner-container,
|
.alignright {
|
||||||
.wp-block-group.alignfull .wp-block-group__inner-container, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
|
/*rtl:ignore*/
|
||||||
.wp-block-pullquote.alignfull > p,
|
margin-right: 16px;
|
||||||
.wp-block-pullquote.alignwide blockquote,
|
}
|
||||||
.wp-block-pullquote.alignfull blockquote, .entry-content .wp-audio-shortcode {
|
|
||||||
max-width: calc( calc( 782px - 32px));
|
@media only screen and (min-width: 560px) {
|
||||||
width: calc( calc( 782px - 32px));
|
.alignright {
|
||||||
|
/*rtl:ignore*/
|
||||||
|
margin-right: calc( 0.5 * (100vw - calc( 560px - 32px)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 640px) {
|
||||||
|
.alignright {
|
||||||
|
/*rtl:ignore*/
|
||||||
|
margin-right: calc( 0.5 * (100vw - calc( 640px - 32px)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 782px) {
|
||||||
|
.alignright {
|
||||||
|
/*rtl:ignore*/
|
||||||
|
margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 1024px) {
|
||||||
|
.alignright {
|
||||||
|
/*rtl:ignore*/
|
||||||
|
margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 1280px) {
|
||||||
|
.alignright {
|
||||||
|
/*rtl:ignore*/
|
||||||
|
margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.alignleft {
|
||||||
|
/*rtl:ignore*/
|
||||||
|
margin-left: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 560px) {
|
||||||
|
.alignleft {
|
||||||
|
/*rtl:ignore*/
|
||||||
|
margin-left: calc( 0.5 * (100vw - calc( 560px - 32px)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 640px) {
|
||||||
|
.alignleft {
|
||||||
|
/*rtl:ignore*/
|
||||||
|
margin-left: calc( 0.5 * (100vw - calc( 640px - 32px)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 782px) {
|
||||||
|
.alignleft {
|
||||||
|
/*rtl:ignore*/
|
||||||
|
margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 1024px) {
|
||||||
|
.alignleft {
|
||||||
|
/*rtl:ignore*/
|
||||||
|
margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 1280px) {
|
||||||
|
.alignleft {
|
||||||
|
/*rtl:ignore*/
|
||||||
|
margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3404,6 +3428,16 @@ a:hover, a:focus {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.main-navigation > div > ul > li:first-of-type,
|
||||||
|
.social-navigation > div > ul > li:first-of-type {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-navigation > div > ul > li:last-of-type,
|
||||||
|
.social-navigation > div > ul > li:last-of-type {
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.main-navigation {
|
.main-navigation {
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue