Skip to content

Commit

Permalink
Adding CSS styles for columns, quote, and spot checked pages. Not res…
Browse files Browse the repository at this point in the history
…tricting banner widths
  • Loading branch information
JasonHowellSlavin committed Nov 2, 2023
1 parent 69eb1c0 commit 63ae879
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,10 @@ main p picture img {
margin-right: auto;
}

.section .columns.columns-table {
max-width: var(--grid-container-width);
}

.article-header .article-feature-image {
padding: 0;
margin: auto;
Expand All @@ -112,6 +116,11 @@ main p picture img {
display: none;
}

.quote {
max-width: var(--grid-container-width);
margin: 0 auto;
}

@media screen and (min-width: 600px) {
body main {
font-size: var(--body-font-size-l);
Expand All @@ -133,4 +142,17 @@ main p picture img {
padding-left: 0;
padding-right: 0;
}

.quote {
max-width: var(--body-max-width);
margin: 0 auto;
}

.section .columns.columns-table {
max-width: var(--body-max-width);
}

.section .columns.contained {
max-width: var(--body-max-width);
}
}

0 comments on commit 63ae879

Please sign in to comment.