Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

4.0 #171

Open
wants to merge 14 commits into
base: 4.0
Choose a base branch
from
2 changes: 1 addition & 1 deletion 404.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
get_header();
?>

<div id="inner-content" class="container">
<div id="inner-content">

<div id="main" class="clearfix" role="main">

Expand Down
2 changes: 1 addition & 1 deletion archive.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
get_header();
?>

<div id="inner-content" class="container">
<div id="inner-content">

<div id="main" class="clearfix" role="main">

Expand Down
21 changes: 21 additions & 0 deletions assets/scss/content.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
#inner-content {
padding-top: 2em;
padding-bottom: 2em;
@include make-container();
@include make-container-max-widths();

// headers

Expand Down Expand Up @@ -142,3 +144,22 @@
}
}
}

.sitemap {
.sitemap__row {
display: flex;
flex-wrap: wrap;
gap: 15px;

.sitemap__col {
flex-grow: 1;
min-height: 1px;
position: relative;

@include media-breakpoint-down('sm') {
min-width: 100%;
}
}
}

}
9 changes: 8 additions & 1 deletion assets/scss/critical.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@
html {
height: 100%;
overflow-x: hidden;
box-sizing: border-box;
-ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
box-sizing: inherit;
}

body {
Expand All @@ -29,7 +37,6 @@ body {
@import "elements/media";
@import "elements/tables";
@import "elements/forms";
@import "elements/bootstrap-grid";
@import "elements/pagination";
@import "elements/comments";
@import "elements/widgets";
3 changes: 1 addition & 2 deletions assets/scss/editor-styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Author:
Stylesheet: Editor Stylesheet

This stylesheet is only for the wysiwyg editor. We will import
our typography styles and bootstrap grid. Add any additional
our typography styles. Add any additional
custom styles here.

******************************************************************/
Expand All @@ -17,7 +17,6 @@ custom styles here.
@import "elements/lists";
@import "elements/media";
@import "elements/tables";
@import "elements/bootstrap-grid";

.mceContentBody {
background-color: #FDFDFD;
Expand Down
262 changes: 0 additions & 262 deletions assets/scss/elements/_bootstrap-grid.scss

This file was deleted.

31 changes: 31 additions & 0 deletions assets/scss/footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,44 @@

.copyright {
text-align: center;
margin-bottom: 0;
}

a {
color: $color__tertiary;
}
}

#footer-widgets {
padding-top: 1.5em;
padding-bottom: 1.5em;
@include make-container();
@include make-container-max-widths();

.footer-widgets__row {
display: flex;
flex-wrap: wrap;
gap: 15px;

.footer-widgets__col {
flex-grow: 1;
min-height: 1px;
position: relative;

@include media-breakpoint-down('sm') {
min-width: 100%;
}
}
}
}

#inner-footer {
padding-top: 1em;
padding-bottom: 1em;
@include make-container();
@include make-container-max-widths();
}

ul.footer-menu {
margin: 0 1px;
padding: 0;
Expand Down
Loading