diff --git a/dist/app.css b/dist/app.css index 84a88f4..b334ee1 100644 --- a/dist/app.css +++ b/dist/app.css @@ -12033,7 +12033,7 @@ a { text-decoration: none; } -.goudy, .team-member .bio-wrapper .right h2, .team-member .bio-wrapper .right .h2, .intro_block h1, .team-member-top h1, .team-members-top h1, .intro_block .h1, .team-member-top .h1, .team-members-top .h1 { +.goudy, .team-member .bio-wrapper .right h2, .team-member .bio-wrapper .right .h2, section.side-by-side-text h2, section.side-by-side-text .h2, .intro_block h1, .team-member-top h1, .team-members-top h1, .intro_block .h1, .team-member-top .h1, .team-members-top .h1 { font-family: "Goudy Bookletter 1911", serif; } @@ -12053,6 +12053,13 @@ a { text-align: center; } +section.side-by-side-text { + padding: 4rem; +} +section.side-by-side-text h2, section.side-by-side-text .h2 { + color: #063C5A; +} + .team-members .team-members-wrapper { display: flex; flex-wrap: wrap; diff --git a/dist/mix-manifest.json b/dist/mix-manifest.json index 87a3a1b..2b17d82 100644 --- a/dist/mix-manifest.json +++ b/dist/mix-manifest.json @@ -1,4 +1,4 @@ { "/app.js": "/app.js?id=099e96d934e937b07341f2ca9fb82ec2", - "/app.css": "/app.css?id=3a95efb602331bb2164c9983720d1768" + "/app.css": "/app.css?id=81574914912ab573b38915c439b2d2d0" } diff --git a/src/scss/flex-side-by-side.scss b/src/scss/flex-side-by-side.scss index e69de29..8783f71 100644 --- a/src/scss/flex-side-by-side.scss +++ b/src/scss/flex-side-by-side.scss @@ -0,0 +1,8 @@ +section.side-by-side-text { + padding: 4rem; + + h2 { + @extend .goudy; + color: $c-navy; + } +}