Morden: Remove custom footer
This commit is contained in:
parent
a3420515d3
commit
6f0adfb00c
6 changed files with 56 additions and 202 deletions
|
@ -1,60 +0,0 @@
|
||||||
<?php
|
|
||||||
/**
|
|
||||||
* The template for displaying the footer
|
|
||||||
*
|
|
||||||
* Contains the closing of the #content div and all content after.
|
|
||||||
*
|
|
||||||
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
|
|
||||||
*
|
|
||||||
* @package WordPress
|
|
||||||
* @subpackage Varia
|
|
||||||
* @since 1.0.0
|
|
||||||
*/
|
|
||||||
|
|
||||||
?>
|
|
||||||
|
|
||||||
</div><!-- #content -->
|
|
||||||
|
|
||||||
<footer id="colophon" class="site-footer responsive-max-width">
|
|
||||||
<?php get_template_part( 'template-parts/footer/footer', 'widgets' ); ?>
|
|
||||||
<?php
|
|
||||||
if ( function_exists( 'the_privacy_policy_link' ) ) {
|
|
||||||
the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' );
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
|
|
||||||
<div class="footer-wrapper">
|
|
||||||
<?php if ( has_nav_menu( 'menu-2' ) ) : ?>
|
|
||||||
<nav class="footer-navigation" aria-label="<?php esc_attr_e( 'Footer Menu', 'morden' ); ?>">
|
|
||||||
<?php
|
|
||||||
wp_nav_menu(
|
|
||||||
array(
|
|
||||||
'theme_location' => 'menu-2',
|
|
||||||
'menu_class' => 'footer-menu',
|
|
||||||
'depth' => 1,
|
|
||||||
)
|
|
||||||
);
|
|
||||||
?>
|
|
||||||
</nav><!-- .footer-navigation -->
|
|
||||||
<?php endif; ?>
|
|
||||||
<div class="site-info">
|
|
||||||
<?php $blog_info = get_bloginfo( 'name' ); ?>
|
|
||||||
<?php if ( ! empty( $blog_info ) ) : ?>
|
|
||||||
<a class="site-name" href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a><span class="comma">,</span>
|
|
||||||
<?php endif; ?>
|
|
||||||
<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'morden' ) ); ?>" class="imprint">
|
|
||||||
<?php
|
|
||||||
/* translators: %s: WordPress. */
|
|
||||||
printf( __( 'proudly powered by %s.', 'morden' ), 'WordPress' );
|
|
||||||
?>
|
|
||||||
</a>
|
|
||||||
</div><!-- .site-info -->
|
|
||||||
</div><!-- .footer-wrapper -->
|
|
||||||
</footer><!-- #colophon -->
|
|
||||||
|
|
||||||
</div><!-- #page -->
|
|
||||||
|
|
||||||
<?php wp_footer(); ?>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -252,7 +252,7 @@ $config-pullquote: (
|
||||||
// Border
|
// Border
|
||||||
"color": (
|
"color": (
|
||||||
"border": #{map-deep-get($config-global, "color", "border", "default")},
|
"border": #{map-deep-get($config-global, "color", "border", "default")},
|
||||||
"background": #{map-deep-get($config-global, "color", "background", "light")},
|
"background": #{map-deep-get($config-global, "color", "primary", "default")},
|
||||||
),
|
),
|
||||||
// Border
|
// Border
|
||||||
"border": (
|
"border": (
|
||||||
|
@ -342,14 +342,14 @@ $config-header: (
|
||||||
$config-footer: (
|
$config-footer: (
|
||||||
// Colors
|
// Colors
|
||||||
"color": (
|
"color": (
|
||||||
"text": map-deep-get($config-global, "color", "background", "default"),
|
"text": map-deep-get($config-global, "color", "foreground", "light"),
|
||||||
"link": map-deep-get($config-global, "color", "background", "default"),
|
"link": map-deep-get($config-global, "color", "foreground", "light"),
|
||||||
"link-hover": map-deep-get($config-global, "color", "background", "dark"),
|
"link-hover": map-deep-get($config-global, "color", "primary", "default"),
|
||||||
),
|
),
|
||||||
// Fonts
|
// Fonts
|
||||||
"font": (
|
"font": (
|
||||||
"family": map-deep-get($config-global, "font", "family", "primary"),
|
"family": map-deep-get($config-global, "font", "family", "primary"),
|
||||||
"size": map-deep-get($config-global, "font", "size", "sm"),
|
"size": map-deep-get($config-global, "font", "size", "xs"),
|
||||||
"line-height": map-deep-get($config-global, "font", "line-height", "sm"),
|
"line-height": map-deep-get($config-global, "font", "line-height", "xs"),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
|
@ -283,45 +283,15 @@ body {
|
||||||
/**
|
/**
|
||||||
* Footer
|
* Footer
|
||||||
*/
|
*/
|
||||||
#colophon {
|
|
||||||
padding-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Footer Wrapper
|
|
||||||
.footer-wrapper {
|
|
||||||
align-items: flex-end;
|
|
||||||
display: flex;
|
|
||||||
flex: 1 0 100%;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
justify-content: space-between;
|
|
||||||
padding-bottom: #{map-deep-get($config-global, "spacing", "vertical")};
|
|
||||||
padding-top: #{map-deep-get($config-global, "spacing", "vertical")};
|
|
||||||
position: relative;
|
|
||||||
|
|
||||||
& > * {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
&:before {
|
|
||||||
background: #{map-deep-get($config-global, "color", "foreground", "default")};
|
|
||||||
content: "";
|
|
||||||
display: block;
|
|
||||||
height: 100%;
|
|
||||||
left: 50%;
|
|
||||||
margin: 0;
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
transform: translateX(-50%);
|
|
||||||
z-index: 0;
|
|
||||||
|
|
||||||
@extend %responsive-width-full;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Footer Menu
|
// Footer Menu
|
||||||
.footer-navigation .footer-menu {
|
.footer-navigation .footer-menu {
|
||||||
margin-left: -#{0.5 * map-deep-get($config-global, "spacing", "horizontal")};
|
margin-left: -#{0.5 * map-deep-get($config-global, "spacing", "horizontal")};
|
||||||
margin-right: -#{0.5 * map-deep-get($config-global, "spacing", "horizontal")};
|
margin-right: -#{0.5 * map-deep-get($config-global, "spacing", "horizontal")};
|
||||||
|
|
||||||
|
a {
|
||||||
|
font-size: #{map-deep-get($config-global, "font", "size", "xs")};
|
||||||
|
line-height: #{map-deep-get($config-global, "font", "line-height", "xs")};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -497,7 +497,7 @@ p.has-background:not(.has-background-background-color) a {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-pullquote.is-style-solid-color {
|
.wp-block-pullquote.is-style-solid-color {
|
||||||
background-color: #F8F8F8;
|
background-color: #CD2220;
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1749,7 +1749,7 @@ p.has-background:not(.has-background-background-color) a {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-pullquote.is-style-solid-color {
|
.wp-block-pullquote.is-style-solid-color {
|
||||||
background-color: #F8F8F8;
|
background-color: #CD2220;
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2494,9 +2494,9 @@ table th,
|
||||||
}
|
}
|
||||||
|
|
||||||
.site-info {
|
.site-info {
|
||||||
color: white;
|
color: #757575;
|
||||||
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
||||||
font-size: 0.86957rem;
|
font-size: 0.75614rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 640px) {
|
@media only screen and (min-width: 640px) {
|
||||||
|
@ -2521,7 +2521,7 @@ table th,
|
||||||
}
|
}
|
||||||
|
|
||||||
.site-info a:hover {
|
.site-info a:hover {
|
||||||
color: #E1DFDF;
|
color: #CD2220;
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer-navigation {
|
.footer-navigation {
|
||||||
|
@ -2543,7 +2543,7 @@ table th,
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer-navigation .footer-menu {
|
.footer-navigation .footer-menu {
|
||||||
color: white;
|
color: #757575;
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
margin-right: -16px;
|
margin-right: -16px;
|
||||||
margin-left: -16px;
|
margin-left: -16px;
|
||||||
|
@ -2574,7 +2574,7 @@ table th,
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer-navigation .footer-menu a:hover {
|
.footer-navigation .footer-menu a:hover {
|
||||||
color: #E1DFDF;
|
color: #CD2220;
|
||||||
}
|
}
|
||||||
|
|
||||||
.entry-title {
|
.entry-title {
|
||||||
|
@ -3160,7 +3160,7 @@ img#wpstats {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #page, #masthead:before, .footer-wrapper:before, .singular .hentry .entry-title,
|
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #page, #masthead:before, .singular .hentry .entry-title,
|
||||||
.page-title {
|
.page-title {
|
||||||
margin-right: calc( -0.5 * ( 100vw - 100% ));
|
margin-right: calc( -0.5 * ( 100vw - 100% ));
|
||||||
margin-left: calc( -0.5 * ( 100vw - 100% ));
|
margin-left: calc( -0.5 * ( 100vw - 100% ));
|
||||||
|
@ -3169,7 +3169,7 @@ img#wpstats {
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 560px) {
|
@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, #page, #masthead:before, .footer-wrapper:before, .singular .hentry .entry-title,
|
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #page, #masthead:before, .singular .hentry .entry-title,
|
||||||
.page-title {
|
.page-title {
|
||||||
margin-right: calc( -0.5 * ( 100vw - calc( 560px - 32px) ));
|
margin-right: calc( -0.5 * ( 100vw - calc( 560px - 32px) ));
|
||||||
margin-left: calc( -0.5 * ( 100vw - calc( 560px - 32px) ));
|
margin-left: calc( -0.5 * ( 100vw - calc( 560px - 32px) ));
|
||||||
|
@ -3179,7 +3179,7 @@ img#wpstats {
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 640px) {
|
@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, #page, #masthead:before, .footer-wrapper:before, .singular .hentry .entry-title,
|
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #page, #masthead:before, .singular .hentry .entry-title,
|
||||||
.page-title {
|
.page-title {
|
||||||
margin-right: calc( -0.5 * ( 100vw - calc( 640px - 32px) ));
|
margin-right: calc( -0.5 * ( 100vw - calc( 640px - 32px) ));
|
||||||
margin-left: calc( -0.5 * ( 100vw - calc( 640px - 32px) ));
|
margin-left: calc( -0.5 * ( 100vw - calc( 640px - 32px) ));
|
||||||
|
@ -3189,7 +3189,7 @@ img#wpstats {
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 782px) {
|
@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, #page, #masthead:before, .footer-wrapper:before, .singular .hentry .entry-title,
|
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #page, #masthead:before, .singular .hentry .entry-title,
|
||||||
.page-title {
|
.page-title {
|
||||||
margin-right: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
margin-right: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
||||||
margin-left: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
margin-left: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
||||||
|
@ -3199,7 +3199,7 @@ img#wpstats {
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 1024px) {
|
@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, #page, #masthead:before, .footer-wrapper:before, .singular .hentry .entry-title,
|
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #page, #masthead:before, .singular .hentry .entry-title,
|
||||||
.page-title {
|
.page-title {
|
||||||
margin-right: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
margin-right: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
||||||
margin-left: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
margin-left: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
||||||
|
@ -3209,7 +3209,7 @@ img#wpstats {
|
||||||
}
|
}
|
||||||
|
|
||||||
@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, #page, #masthead:before, .footer-wrapper:before, .singular .hentry .entry-title,
|
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #page, #masthead:before, .singular .hentry .entry-title,
|
||||||
.page-title {
|
.page-title {
|
||||||
margin-right: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
margin-right: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
||||||
margin-left: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
margin-left: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
||||||
|
@ -3426,7 +3426,7 @@ img#wpstats {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #page, #masthead:before, .footer-wrapper:before, .singular .hentry .entry-title,
|
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #page, #masthead:before, .singular .hentry .entry-title,
|
||||||
.page-title {
|
.page-title {
|
||||||
margin-right: calc( -0.5 * ( 100vw - 100% ));
|
margin-right: calc( -0.5 * ( 100vw - 100% ));
|
||||||
margin-left: calc( -0.5 * ( 100vw - 100% ));
|
margin-left: calc( -0.5 * ( 100vw - 100% ));
|
||||||
|
@ -3435,7 +3435,7 @@ img#wpstats {
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 560px) {
|
@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, #page, #masthead:before, .footer-wrapper:before, .singular .hentry .entry-title,
|
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #page, #masthead:before, .singular .hentry .entry-title,
|
||||||
.page-title {
|
.page-title {
|
||||||
margin-right: calc( -0.5 * ( 100vw - calc( 560px - 32px) ));
|
margin-right: calc( -0.5 * ( 100vw - calc( 560px - 32px) ));
|
||||||
margin-left: calc( -0.5 * ( 100vw - calc( 560px - 32px) ));
|
margin-left: calc( -0.5 * ( 100vw - calc( 560px - 32px) ));
|
||||||
|
@ -3445,7 +3445,7 @@ img#wpstats {
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 640px) {
|
@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, #page, #masthead:before, .footer-wrapper:before, .singular .hentry .entry-title,
|
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #page, #masthead:before, .singular .hentry .entry-title,
|
||||||
.page-title {
|
.page-title {
|
||||||
margin-right: calc( -0.3 * ( 100vw - calc( 640px - 32px) ));
|
margin-right: calc( -0.3 * ( 100vw - calc( 640px - 32px) ));
|
||||||
margin-left: calc( -0.3 * ( 100vw - calc( 640px - 32px) ));
|
margin-left: calc( -0.3 * ( 100vw - calc( 640px - 32px) ));
|
||||||
|
@ -3455,7 +3455,7 @@ img#wpstats {
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 782px) {
|
@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, #page, #masthead:before, .footer-wrapper:before, .singular .hentry .entry-title,
|
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #page, #masthead:before, .singular .hentry .entry-title,
|
||||||
.page-title {
|
.page-title {
|
||||||
margin-right: calc( -0.4 * ( 100vw - calc( 782px - 32px) ));
|
margin-right: calc( -0.4 * ( 100vw - calc( 782px - 32px) ));
|
||||||
margin-left: calc( -0.4 * ( 100vw - calc( 782px - 32px) ));
|
margin-left: calc( -0.4 * ( 100vw - calc( 782px - 32px) ));
|
||||||
|
@ -3465,7 +3465,7 @@ img#wpstats {
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 1024px) {
|
@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, #page, #masthead:before, .footer-wrapper:before, .singular .hentry .entry-title,
|
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #page, #masthead:before, .singular .hentry .entry-title,
|
||||||
.page-title {
|
.page-title {
|
||||||
margin-right: calc( -0.4 * ( 100vw - calc( 782px - 32px) ));
|
margin-right: calc( -0.4 * ( 100vw - calc( 782px - 32px) ));
|
||||||
margin-left: calc( -0.4 * ( 100vw - calc( 782px - 32px) ));
|
margin-left: calc( -0.4 * ( 100vw - calc( 782px - 32px) ));
|
||||||
|
@ -3475,7 +3475,7 @@ img#wpstats {
|
||||||
}
|
}
|
||||||
|
|
||||||
@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, #page, #masthead:before, .footer-wrapper:before, .singular .hentry .entry-title,
|
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #page, #masthead:before, .singular .hentry .entry-title,
|
||||||
.page-title {
|
.page-title {
|
||||||
margin-right: calc( -0.4 * ( 100vw - calc( 782px - 32px) ));
|
margin-right: calc( -0.4 * ( 100vw - calc( 782px - 32px) ));
|
||||||
margin-left: calc( -0.4 * ( 100vw - calc( 782px - 32px) ));
|
margin-left: calc( -0.4 * ( 100vw - calc( 782px - 32px) ));
|
||||||
|
@ -3694,43 +3694,15 @@ body {
|
||||||
/**
|
/**
|
||||||
* Footer
|
* Footer
|
||||||
*/
|
*/
|
||||||
#colophon {
|
|
||||||
padding-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-wrapper {
|
|
||||||
align-items: flex-end;
|
|
||||||
display: flex;
|
|
||||||
flex: 1 0 100%;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
justify-content: space-between;
|
|
||||||
padding-bottom: 32px;
|
|
||||||
padding-top: 32px;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-wrapper > * {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-wrapper:before {
|
|
||||||
background: #303030;
|
|
||||||
content: "";
|
|
||||||
display: block;
|
|
||||||
height: 100%;
|
|
||||||
right: 50%;
|
|
||||||
margin: 0;
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
transform: translateX(50%);
|
|
||||||
z-index: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-navigation .footer-menu {
|
.footer-navigation .footer-menu {
|
||||||
margin-right: -8px;
|
margin-right: -8px;
|
||||||
margin-left: -8px;
|
margin-left: -8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.footer-navigation .footer-menu a {
|
||||||
|
font-size: 0.75614rem;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Blocks
|
* Blocks
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1749,7 +1749,7 @@ p.has-background:not(.has-background-background-color) a {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-pullquote.is-style-solid-color {
|
.wp-block-pullquote.is-style-solid-color {
|
||||||
background-color: #F8F8F8;
|
background-color: #CD2220;
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2499,9 +2499,9 @@ table th,
|
||||||
}
|
}
|
||||||
|
|
||||||
.site-info {
|
.site-info {
|
||||||
color: white;
|
color: #757575;
|
||||||
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
||||||
font-size: 0.86957rem;
|
font-size: 0.75614rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 640px) {
|
@media only screen and (min-width: 640px) {
|
||||||
|
@ -2526,7 +2526,7 @@ table th,
|
||||||
}
|
}
|
||||||
|
|
||||||
.site-info a:hover {
|
.site-info a:hover {
|
||||||
color: #E1DFDF;
|
color: #CD2220;
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer-navigation {
|
.footer-navigation {
|
||||||
|
@ -2548,7 +2548,7 @@ table th,
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer-navigation .footer-menu {
|
.footer-navigation .footer-menu {
|
||||||
color: white;
|
color: #757575;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
margin-left: -16px;
|
margin-left: -16px;
|
||||||
margin-right: -16px;
|
margin-right: -16px;
|
||||||
|
@ -2579,7 +2579,7 @@ table th,
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer-navigation .footer-menu a:hover {
|
.footer-navigation .footer-menu a:hover {
|
||||||
color: #E1DFDF;
|
color: #CD2220;
|
||||||
}
|
}
|
||||||
|
|
||||||
.entry-title {
|
.entry-title {
|
||||||
|
@ -3165,7 +3165,7 @@ img#wpstats {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #page, #masthead:before, .footer-wrapper:before, .singular .hentry .entry-title,
|
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #page, #masthead:before, .singular .hentry .entry-title,
|
||||||
.page-title {
|
.page-title {
|
||||||
margin-left: calc( -0.5 * ( 100vw - 100% ));
|
margin-left: calc( -0.5 * ( 100vw - 100% ));
|
||||||
margin-right: calc( -0.5 * ( 100vw - 100% ));
|
margin-right: calc( -0.5 * ( 100vw - 100% ));
|
||||||
|
@ -3174,7 +3174,7 @@ img#wpstats {
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 560px) {
|
@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, #page, #masthead:before, .footer-wrapper:before, .singular .hentry .entry-title,
|
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #page, #masthead:before, .singular .hentry .entry-title,
|
||||||
.page-title {
|
.page-title {
|
||||||
margin-left: calc( -0.5 * ( 100vw - calc( 560px - 32px) ));
|
margin-left: calc( -0.5 * ( 100vw - calc( 560px - 32px) ));
|
||||||
margin-right: calc( -0.5 * ( 100vw - calc( 560px - 32px) ));
|
margin-right: calc( -0.5 * ( 100vw - calc( 560px - 32px) ));
|
||||||
|
@ -3184,7 +3184,7 @@ img#wpstats {
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 640px) {
|
@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, #page, #masthead:before, .footer-wrapper:before, .singular .hentry .entry-title,
|
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #page, #masthead:before, .singular .hentry .entry-title,
|
||||||
.page-title {
|
.page-title {
|
||||||
margin-left: calc( -0.5 * ( 100vw - calc( 640px - 32px) ));
|
margin-left: calc( -0.5 * ( 100vw - calc( 640px - 32px) ));
|
||||||
margin-right: calc( -0.5 * ( 100vw - calc( 640px - 32px) ));
|
margin-right: calc( -0.5 * ( 100vw - calc( 640px - 32px) ));
|
||||||
|
@ -3194,7 +3194,7 @@ img#wpstats {
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 782px) {
|
@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, #page, #masthead:before, .footer-wrapper:before, .singular .hentry .entry-title,
|
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #page, #masthead:before, .singular .hentry .entry-title,
|
||||||
.page-title {
|
.page-title {
|
||||||
margin-left: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
margin-left: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
||||||
margin-right: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
margin-right: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
||||||
|
@ -3204,7 +3204,7 @@ img#wpstats {
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 1024px) {
|
@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, #page, #masthead:before, .footer-wrapper:before, .singular .hentry .entry-title,
|
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #page, #masthead:before, .singular .hentry .entry-title,
|
||||||
.page-title {
|
.page-title {
|
||||||
margin-left: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
margin-left: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
||||||
margin-right: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
margin-right: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
||||||
|
@ -3214,7 +3214,7 @@ img#wpstats {
|
||||||
}
|
}
|
||||||
|
|
||||||
@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, #page, #masthead:before, .footer-wrapper:before, .singular .hentry .entry-title,
|
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #page, #masthead:before, .singular .hentry .entry-title,
|
||||||
.page-title {
|
.page-title {
|
||||||
margin-left: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
margin-left: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
||||||
margin-right: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
margin-right: calc( -0.5 * ( 100vw - calc( 782px - 32px) ));
|
||||||
|
@ -3431,7 +3431,7 @@ img#wpstats {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #page, #masthead:before, .footer-wrapper:before, .singular .hentry .entry-title,
|
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #page, #masthead:before, .singular .hentry .entry-title,
|
||||||
.page-title {
|
.page-title {
|
||||||
margin-left: calc( -0.5 * ( 100vw - 100% ));
|
margin-left: calc( -0.5 * ( 100vw - 100% ));
|
||||||
margin-right: calc( -0.5 * ( 100vw - 100% ));
|
margin-right: calc( -0.5 * ( 100vw - 100% ));
|
||||||
|
@ -3440,7 +3440,7 @@ img#wpstats {
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 560px) {
|
@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, #page, #masthead:before, .footer-wrapper:before, .singular .hentry .entry-title,
|
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #page, #masthead:before, .singular .hentry .entry-title,
|
||||||
.page-title {
|
.page-title {
|
||||||
margin-left: calc( -0.5 * ( 100vw - calc( 560px - 32px) ));
|
margin-left: calc( -0.5 * ( 100vw - calc( 560px - 32px) ));
|
||||||
margin-right: calc( -0.5 * ( 100vw - calc( 560px - 32px) ));
|
margin-right: calc( -0.5 * ( 100vw - calc( 560px - 32px) ));
|
||||||
|
@ -3450,7 +3450,7 @@ img#wpstats {
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 640px) {
|
@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, #page, #masthead:before, .footer-wrapper:before, .singular .hentry .entry-title,
|
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #page, #masthead:before, .singular .hentry .entry-title,
|
||||||
.page-title {
|
.page-title {
|
||||||
margin-left: calc( -0.3 * ( 100vw - calc( 640px - 32px) ));
|
margin-left: calc( -0.3 * ( 100vw - calc( 640px - 32px) ));
|
||||||
margin-right: calc( -0.3 * ( 100vw - calc( 640px - 32px) ));
|
margin-right: calc( -0.3 * ( 100vw - calc( 640px - 32px) ));
|
||||||
|
@ -3460,7 +3460,7 @@ img#wpstats {
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 782px) {
|
@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, #page, #masthead:before, .footer-wrapper:before, .singular .hentry .entry-title,
|
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #page, #masthead:before, .singular .hentry .entry-title,
|
||||||
.page-title {
|
.page-title {
|
||||||
margin-left: calc( -0.4 * ( 100vw - calc( 782px - 32px) ));
|
margin-left: calc( -0.4 * ( 100vw - calc( 782px - 32px) ));
|
||||||
margin-right: calc( -0.4 * ( 100vw - calc( 782px - 32px) ));
|
margin-right: calc( -0.4 * ( 100vw - calc( 782px - 32px) ));
|
||||||
|
@ -3470,7 +3470,7 @@ img#wpstats {
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 1024px) {
|
@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, #page, #masthead:before, .footer-wrapper:before, .singular .hentry .entry-title,
|
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #page, #masthead:before, .singular .hentry .entry-title,
|
||||||
.page-title {
|
.page-title {
|
||||||
margin-left: calc( -0.4 * ( 100vw - calc( 782px - 32px) ));
|
margin-left: calc( -0.4 * ( 100vw - calc( 782px - 32px) ));
|
||||||
margin-right: calc( -0.4 * ( 100vw - calc( 782px - 32px) ));
|
margin-right: calc( -0.4 * ( 100vw - calc( 782px - 32px) ));
|
||||||
|
@ -3480,7 +3480,7 @@ img#wpstats {
|
||||||
}
|
}
|
||||||
|
|
||||||
@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, #page, #masthead:before, .footer-wrapper:before, .singular .hentry .entry-title,
|
.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #page, #masthead:before, .singular .hentry .entry-title,
|
||||||
.page-title {
|
.page-title {
|
||||||
margin-left: calc( -0.4 * ( 100vw - calc( 782px - 32px) ));
|
margin-left: calc( -0.4 * ( 100vw - calc( 782px - 32px) ));
|
||||||
margin-right: calc( -0.4 * ( 100vw - calc( 782px - 32px) ));
|
margin-right: calc( -0.4 * ( 100vw - calc( 782px - 32px) ));
|
||||||
|
@ -3699,43 +3699,15 @@ body {
|
||||||
/**
|
/**
|
||||||
* Footer
|
* Footer
|
||||||
*/
|
*/
|
||||||
#colophon {
|
|
||||||
padding-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-wrapper {
|
|
||||||
align-items: flex-end;
|
|
||||||
display: flex;
|
|
||||||
flex: 1 0 100%;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
justify-content: space-between;
|
|
||||||
padding-bottom: 32px;
|
|
||||||
padding-top: 32px;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-wrapper > * {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-wrapper:before {
|
|
||||||
background: #303030;
|
|
||||||
content: "";
|
|
||||||
display: block;
|
|
||||||
height: 100%;
|
|
||||||
left: 50%;
|
|
||||||
margin: 0;
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
transform: translateX(-50%);
|
|
||||||
z-index: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-navigation .footer-menu {
|
.footer-navigation .footer-menu {
|
||||||
margin-left: -8px;
|
margin-left: -8px;
|
||||||
margin-right: -8px;
|
margin-right: -8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.footer-navigation .footer-menu a {
|
||||||
|
font-size: 0.75614rem;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Blocks
|
* Blocks
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue