Skip to content
Open

4.0 #171

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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