Selaa lähdekoodia

Remove custom footer code, and styles to be back to how Varia is by default.

Jeffrey Pearce 6 vuotta sitten
vanhempi
commit
1db5c6217e
5 muutettua tiedostoa jossa 99 lisäystä ja 317 poistoa
  1. 0 61
      stow/footer.php
  2. 3 3
      stow/sass/_config-child-theme-deep.scss
  3. 22 73
      stow/sass/_extra-child-theme.scss
  4. 42 100
      stow/style-rtl.css
  5. 32 80
      stow/style.css

+ 0 - 61
stow/footer.php

@@ -1,61 +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">
-        <div class="footer-widgets">
-            <?php get_template_part( 'template-parts/footer/footer', 'widgets' ); ?>    
-        </div><!-- .footer-widgets -->
-		<?php
-		if ( function_exists( 'the_privacy_policy_link' ) ) {
-			the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' );
-		}
-        ?>
-        <div class="footer-nav-credits">
-            <?php if ( has_nav_menu( 'menu-2' ) ) : ?>
-                <nav class="footer-navigation" aria-label="<?php esc_attr_e( 'Footer Menu', 'varia' ); ?>">
-                    <?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/', 'varia' ) ); ?>" class="imprint">
-                    <?php
-                    /* translators: %s: WordPress. */
-                    printf( __( 'proudly powered by %s.', 'varia' ), 'WordPress' );
-                    ?>
-                </a>
-            </div><!-- .site-info -->
-        </div><!-- .footer-nav-credits -->
-	</footer><!-- #colophon -->
-
-</div><!-- #page -->
-
-<?php wp_footer(); ?>
-
-</body>
-</html>

+ 3 - 3
stow/sass/_config-child-theme-deep.scss

@@ -342,9 +342,9 @@ $config-header: (
 $config-footer: (
 	// Colors
 	"color": (
-		"text": map-deep-get($config-global, "color", "white"),
-		"link": map-deep-get($config-global, "color", "white"),
-		"link-hover": map-deep-get($config-global, "color", "secondary", "default"),
+		"text": map-deep-get($config-global, "color", "primary", "default"),
+		"link": map-deep-get($config-global, "color", "secondary", "default"),
+		"link-hover": map-deep-get($config-global, "color", "secondary", "hover"),
 	),
 	// Fonts
 	"font": (

+ 22 - 73
stow/sass/_extra-child-theme.scss

@@ -5,18 +5,17 @@
  * 2. Header
  * 3. Main Wrapper and Content
  * 4. Navigation Menu
- * 5. Footer
- * 6. Archive Pagination and Post Navigation
- * 7. Block Specific Styles
- * 7.1. Column Block
- * 7.2. Quote Block
- * 7.3. Hero Block and Cover Block
- * 7.4. File Block
- * 7.5. Latest Comments Block
- * 7.6. Button Block
- * 7.7. Posts List Block
- * 7.8. Search Block
- * 8. Widgets
+ * 5. Archive Pagination and Post Navigation
+ * 6. Block Specific Styles
+ * 6.1. Column Block
+ * 6.2. Quote Block
+ * 6.3. Hero Block and Cover Block
+ * 6.4. File Block
+ * 6.5. Latest Comments Block
+ * 6.6. Button Block
+ * 6.7. Posts List Block
+ * 6.8. Search Block
+ * 7. Widgets
  */
 
 /**
@@ -204,24 +203,7 @@ a {
 }
 
 /**
- * 5. Footer
- */
-.site-footer {
-	background-color: #{map-deep-get($config-global, "color", "primary", "default")};
-	margin: 0 auto;
-	padding: #{map-deep-get($config-global, "spacing", "vertical")};
-	@extend %responsive-width-full;
-	@include media(tablet) {
-		div {
-			&.footer-nav-credits {
-				width: 100%;
-			}
-		}
-	}
-}
-
-/**
- * 6. Archive Pagination and Post Navigation
+ * 5. Archive Pagination and Post Navigation
  */
 .pagination .nav-links > *, 
 .post-navigation .post-title {
@@ -229,11 +211,11 @@ a {
 }
 
 /**
- * 7. Block Specific Styles
+ * 6. Block Specific Styles
  */
 
 /**
- * 7.1. Column Block
+ * 6.1. Column Block
  */
 .wp-block-coblocks-column {
 	h1, 
@@ -253,7 +235,7 @@ a {
 }
 
 /**
- * 7.2. Quote Block
+ * 6.2. Quote Block
  */
 .wp-block-quote, 
 .wp-block-quote[style*="text-align:center"], 
@@ -269,7 +251,7 @@ a {
 }
 
 /**
- * 7.3. Hero Block and Cover Block
+ * 6.3. Hero Block and Cover Block
  */
 .wp-block-coblocks-hero__box, 
 .wp-block-cover__inner-container {
@@ -288,7 +270,7 @@ a {
 }
 
 /**
- * 7.4. File Block
+ * 6.4. File Block
  */
 .wp-block-file {
 	a {
@@ -317,7 +299,7 @@ a {
 }
 
 /**
- * 7.5. Latest Comments Block
+ * 6.5. Latest Comments Block
  */
 .wp-block-latest-comments {
 	.wp-block-latest-comments__comment-meta {
@@ -329,9 +311,9 @@ a {
 }
 
 /**
- * 7.6. Button Block
- * 7.7. Posts List Block
- * 7.8. Search Block
+ * 6.6. Button Block
+ * 6.7. Posts List Block
+ * 6.8. Search Block
  */
  .wp-block-button a.wp-block-button__link,
  .a8c-posts-list a.a8c-posts-list__view-all,
@@ -340,45 +322,12 @@ a {
 }
 
 /**
- * 8. Widgets
+ * 7. Widgets
  */
 .site-footer {
 	.widget-area {
-		color: map-deep-get($config-footer, "color", "text");
-		a {
-			color: map-deep-get($config-footer, "color", "link");
-			&:hover {
-				color: map-deep-get($config-footer, "color", "link-hover");
-			}
-		}
 		.widget-title {
 			margin-bottom: .857em;
 		}
 	}
-	@include media(tablet) {
-		div {
-			&.footer-widgets {
-				width: 100%;
-				aside {
-					&.widget-area {
-						display:flex;
-						flex-wrap:wrap;
-						flex-direction:row;
-						justify-content:flex-start;
-						align-items:stretch;
-						section {
-							&.widget {
-								flex-basis: 50%;
-								padding-right: #{map-deep-get($config-global, "spacing", "vertical")};
-							}
-						}
-						> *:first-child {
-							margin-top: #{map-deep-get($config-global, "spacing", "vertical")};
-						}
-					}
-				}
-				
-			}
-		}
-	}
 }

+ 42 - 100
stow/style-rtl.css

@@ -2362,7 +2362,7 @@ table th,
 }
 
 .site-info {
-	color: white;
+	color: #404040;
 	font-family: "Oswald", sans-serif;
 	font-size: 0.83333rem;
 }
@@ -2389,7 +2389,7 @@ table th,
 }
 
 .site-info a:hover {
-	color: #f25f70;
+	color: #4f4f4f;
 }
 
 .footer-navigation {
@@ -2411,7 +2411,7 @@ table th,
 }
 
 .footer-navigation .footer-menu {
-	color: white;
+	color: #404040;
 	padding-right: 0;
 	margin-right: -16px;
 	margin-left: -16px;
@@ -2442,7 +2442,7 @@ table th,
 }
 
 .footer-navigation .footer-menu a:hover {
-	color: #f25f70;
+	color: #4f4f4f;
 }
 
 .entry-title {
@@ -3022,7 +3022,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, #masthead, .site-footer {
+.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #masthead {
 	margin-right: calc( -0.5 * ( 100vw - 100% ));
 	margin-left: calc( -0.5 * ( 100vw - 100% ));
 	width: calc( 100% + (0.5 * 2) * ( 100vw - 100% ));
@@ -3030,7 +3030,7 @@ img#wpstats {
 }
 
 @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, #masthead, .site-footer {
+	.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #masthead {
 		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) ));
@@ -3039,7 +3039,7 @@ img#wpstats {
 }
 
 @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, #masthead, .site-footer {
+	.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #masthead {
 		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) ));
@@ -3048,7 +3048,7 @@ img#wpstats {
 }
 
 @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, #masthead, .site-footer {
+	.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #masthead {
 		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) ));
@@ -3057,7 +3057,7 @@ img#wpstats {
 }
 
 @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, #masthead, .site-footer {
+	.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #masthead {
 		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) ));
@@ -3066,7 +3066,7 @@ img#wpstats {
 }
 
 @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, #masthead, .site-footer {
+	.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #masthead {
 		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) ));
@@ -3216,18 +3216,17 @@ img#wpstats {
  * 2. Header
  * 3. Main Wrapper and Content
  * 4. Navigation Menu
- * 5. Footer
- * 6. Archive Pagination and Post Navigation
- * 7. Block Specific Styles
- * 7.1. Column Block
- * 7.2. Quote Block
- * 7.3. Hero Block and Cover Block
- * 7.4. File Block
- * 7.5. Latest Comments Block
- * 7.6. Button Block
- * 7.7. Posts List Block
- * 7.8. Search Block
- * 8. Widgets
+ * 5. Archive Pagination and Post Navigation
+ * 6. Block Specific Styles
+ * 6.1. Column Block
+ * 6.2. Quote Block
+ * 6.3. Hero Block and Cover Block
+ * 6.4. File Block
+ * 6.5. Latest Comments Block
+ * 6.6. Button Block
+ * 6.7. Posts List Block
+ * 6.8. Search Block
+ * 7. Widgets
  */
 /**
  * 1. General Helper Styles
@@ -3236,6 +3235,14 @@ body {
 	font-weight: 300;
 }
 
+body.hide-homepage-title .site-main {
+	padding: 0;
+}
+
+body.hide-homepage-title .site-main article .entry-content {
+	margin-top: 0;
+}
+
 a {
 	text-decoration: none;
 }
@@ -3395,22 +3402,7 @@ a {
 }
 
 /**
- * 5. Footer
- */
-.site-footer {
-	background-color: #404040;
-	margin: 0 auto;
-	padding: 32px;
-}
-
-@media only screen and (min-width: 640px) {
-	.site-footer div.footer-nav-credits {
-		width: 100%;
-	}
-}
-
-/**
- * 6. Archive Pagination and Post Navigation
+ * 5. Archive Pagination and Post Navigation
  */
 .pagination .nav-links > *,
 .post-navigation .post-title {
@@ -3418,10 +3410,10 @@ a {
 }
 
 /**
- * 7. Block Specific Styles
+ * 6. Block Specific Styles
  */
 /**
- * 7.1. Column Block
+ * 6.1. Column Block
  */
 .wp-block-coblocks-column h1,
 .wp-block-coblocks-column h2,
@@ -3441,7 +3433,7 @@ a {
 }
 
 /**
- * 7.2. Quote Block
+ * 6.2. Quote Block
  */
 .wp-block-quote,
 .wp-block-quote[style*="text-align:center"],
@@ -3463,7 +3455,7 @@ a {
 }
 
 /**
- * 7.3. Hero Block and Cover Block
+ * 6.3. Hero Block and Cover Block
  */
 .wp-block-coblocks-hero__box,
 .wp-block-cover__inner-container {
@@ -3491,7 +3483,7 @@ a {
 }
 
 /**
- * 7.4. File Block
+ * 6.4. File Block
  */
 .wp-block-file a.wp-block-file__button {
 	text-transform: uppercase;
@@ -3515,7 +3507,7 @@ a {
 }
 
 /**
- * 7.5. Latest Comments Block
+ * 6.5. Latest Comments Block
  */
 .wp-block-latest-comments .wp-block-latest-comments__comment-meta {
 	font-family: "Source Sans Pro", Arial, sans-serif;
@@ -3526,69 +3518,19 @@ a {
 }
 
 /**
- * 7.6. Button Block
- */
-.wp-block-button a.wp-block-button__link {
-	text-transform: uppercase;
-}
-
-/**
- * 7.7. Posts List Block
- */
-.a8c-posts-list a.a8c-posts-list__view-all {
-	text-transform: uppercase;
-}
-
-/**
- * 7.8. Search Block
+ * 6.6. Button Block
+ * 6.7. Posts List Block
+ * 6.8. Search Block
  */
+.wp-block-button a.wp-block-button__link,
+.a8c-posts-list a.a8c-posts-list__view-all,
 .wp-block-search .wp-block-search__button {
 	text-transform: uppercase;
 }
 
 /**
- * 8. Widgets
+ * 7. Widgets
  */
-.site-footer .widget-area {
-	color: white;
-}
-
-.site-footer .widget-area a {
-	color: white;
-}
-
-.site-footer .widget-area a:hover {
-	color: #f25f70;
-}
-
 .site-footer .widget-area .widget-title {
 	margin-bottom: .857em;
 }
-
-@media only screen and (min-width: 640px) {
-	.site-footer div.footer-widgets {
-		width: 100%;
-	}
-	.site-footer div.footer-widgets aside.widget-area {
-		display: flex;
-		flex-wrap: wrap;
-		flex-direction: row;
-		justify-content: flex-start;
-		align-items: stretch;
-	}
-	.site-footer div.footer-widgets aside.widget-area section.widget {
-		flex-basis: 50%;
-		padding-left: 32px;
-	}
-	.site-footer div.footer-widgets aside.widget-area > *:first-child {
-		margin-top: 32px;
-	}
-}
-
-body.hide-homepage-title .site-main {
-	padding: 0;
-}
-
-body.hide-homepage-title .site-main article .entry-content {
-	margin-top: 0;
-}

+ 32 - 80
stow/style.css

@@ -2367,7 +2367,7 @@ table th,
 }
 
 .site-info {
-	color: white;
+	color: #404040;
 	font-family: "Oswald", sans-serif;
 	font-size: 0.83333rem;
 }
@@ -2394,7 +2394,7 @@ table th,
 }
 
 .site-info a:hover {
-	color: #f25f70;
+	color: #4f4f4f;
 }
 
 .footer-navigation {
@@ -2416,7 +2416,7 @@ table th,
 }
 
 .footer-navigation .footer-menu {
-	color: white;
+	color: #404040;
 	padding-left: 0;
 	margin-left: -16px;
 	margin-right: -16px;
@@ -2447,7 +2447,7 @@ table th,
 }
 
 .footer-navigation .footer-menu a:hover {
-	color: #f25f70;
+	color: #4f4f4f;
 }
 
 .entry-title {
@@ -3027,7 +3027,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, #masthead, .site-footer {
+.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #masthead {
 	margin-left: calc( -0.5 * ( 100vw - 100% ));
 	margin-right: calc( -0.5 * ( 100vw - 100% ));
 	width: calc( 100% + (0.5 * 2) * ( 100vw - 100% ));
@@ -3035,7 +3035,7 @@ img#wpstats {
 }
 
 @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, #masthead, .site-footer {
+	.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #masthead {
 		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) ));
@@ -3044,7 +3044,7 @@ img#wpstats {
 }
 
 @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, #masthead, .site-footer {
+	.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #masthead {
 		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) ));
@@ -3053,7 +3053,7 @@ img#wpstats {
 }
 
 @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, #masthead, .site-footer {
+	.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #masthead {
 		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) ));
@@ -3062,7 +3062,7 @@ img#wpstats {
 }
 
 @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, #masthead, .site-footer {
+	.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #masthead {
 		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) ));
@@ -3071,7 +3071,7 @@ img#wpstats {
 }
 
 @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, #masthead, .site-footer {
+	.wp-block-group.alignfull .alignfull, .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery, #masthead {
 		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) ));
@@ -3221,18 +3221,17 @@ img#wpstats {
  * 2. Header
  * 3. Main Wrapper and Content
  * 4. Navigation Menu
- * 5. Footer
- * 6. Archive Pagination and Post Navigation
- * 7. Block Specific Styles
- * 7.1. Column Block
- * 7.2. Quote Block
- * 7.3. Hero Block and Cover Block
- * 7.4. File Block
- * 7.5. Latest Comments Block
- * 7.6. Button Block
- * 7.7. Posts List Block
- * 7.8. Search Block
- * 8. Widgets
+ * 5. Archive Pagination and Post Navigation
+ * 6. Block Specific Styles
+ * 6.1. Column Block
+ * 6.2. Quote Block
+ * 6.3. Hero Block and Cover Block
+ * 6.4. File Block
+ * 6.5. Latest Comments Block
+ * 6.6. Button Block
+ * 6.7. Posts List Block
+ * 6.8. Search Block
+ * 7. Widgets
  */
 /**
  * 1. General Helper Styles
@@ -3408,22 +3407,7 @@ a {
 }
 
 /**
- * 5. Footer
- */
-.site-footer {
-	background-color: #404040;
-	margin: 0 auto;
-	padding: 32px;
-}
-
-@media only screen and (min-width: 640px) {
-	.site-footer div.footer-nav-credits {
-		width: 100%;
-	}
-}
-
-/**
- * 6. Archive Pagination and Post Navigation
+ * 5. Archive Pagination and Post Navigation
  */
 .pagination .nav-links > *,
 .post-navigation .post-title {
@@ -3431,10 +3415,10 @@ a {
 }
 
 /**
- * 7. Block Specific Styles
+ * 6. Block Specific Styles
  */
 /**
- * 7.1. Column Block
+ * 6.1. Column Block
  */
 .wp-block-coblocks-column h1,
 .wp-block-coblocks-column h2,
@@ -3454,7 +3438,7 @@ a {
 }
 
 /**
- * 7.2. Quote Block
+ * 6.2. Quote Block
  */
 .wp-block-quote,
 .wp-block-quote[style*="text-align:center"],
@@ -3476,7 +3460,7 @@ a {
 }
 
 /**
- * 7.3. Hero Block and Cover Block
+ * 6.3. Hero Block and Cover Block
  */
 .wp-block-coblocks-hero__box,
 .wp-block-cover__inner-container {
@@ -3504,7 +3488,7 @@ a {
 }
 
 /**
- * 7.4. File Block
+ * 6.4. File Block
  */
 .wp-block-file a.wp-block-file__button {
 	text-transform: uppercase;
@@ -3528,7 +3512,7 @@ a {
 }
 
 /**
- * 7.5. Latest Comments Block
+ * 6.5. Latest Comments Block
  */
 .wp-block-latest-comments .wp-block-latest-comments__comment-meta {
 	font-family: "Source Sans Pro", Arial, sans-serif;
@@ -3539,9 +3523,9 @@ a {
 }
 
 /**
- * 7.6. Button Block
- * 7.7. Posts List Block
- * 7.8. Search Block
+ * 6.6. Button Block
+ * 6.7. Posts List Block
+ * 6.8. Search Block
  */
 .wp-block-button a.wp-block-button__link,
 .a8c-posts-list a.a8c-posts-list__view-all,
@@ -3550,40 +3534,8 @@ a {
 }
 
 /**
- * 8. Widgets
+ * 7. Widgets
  */
-.site-footer .widget-area {
-	color: white;
-}
-
-.site-footer .widget-area a {
-	color: white;
-}
-
-.site-footer .widget-area a:hover {
-	color: #f25f70;
-}
-
 .site-footer .widget-area .widget-title {
 	margin-bottom: .857em;
 }
-
-@media only screen and (min-width: 640px) {
-	.site-footer div.footer-widgets {
-		width: 100%;
-	}
-	.site-footer div.footer-widgets aside.widget-area {
-		display: flex;
-		flex-wrap: wrap;
-		flex-direction: row;
-		justify-content: flex-start;
-		align-items: stretch;
-	}
-	.site-footer div.footer-widgets aside.widget-area section.widget {
-		flex-basis: 50%;
-		padding-right: 32px;
-	}
-	.site-footer div.footer-widgets aside.widget-area > *:first-child {
-		margin-top: 32px;
-	}
-}