From a4be0a6a3f6588cbab2b79a20205c80ca3305e1a Mon Sep 17 00:00:00 2001 From: Kurtis Holsapple Date: Wed, 7 May 2025 15:45:52 -0700 Subject: [PATCH] WIP --- dist/app.css | 17 ++++++++++++++++- dist/mix-manifest.json | 2 +- src/scss/app.scss | 1 + src/scss/flex-large-quote.scss | 20 ++++++++++++++++++++ 4 files changed, 38 insertions(+), 2 deletions(-) create mode 100644 src/scss/flex-large-quote.scss diff --git a/dist/app.css b/dist/app.css index 005bd6c..109c24f 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, section.grid-callout h2, section.grid-callout .h2, section.flex-5050-cta h2, section.flex-5050-cta .h2, section.multiblock-callout h2, section.multiblock-callout .h2, .text-over-image-c .content-wrapper .content h2, .text-over-image-c .content-wrapper .content .h2, .text-over-image-b .content-wrapper .content h2, .text-over-image-b .content-wrapper .content .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 { +.goudy, .team-member .bio-wrapper .right h2, .team-member .bio-wrapper .right .h2, section.large-quote .quote, section.grid-callout h2, section.grid-callout .h2, section.flex-5050-cta h2, section.flex-5050-cta .h2, section.multiblock-callout h2, section.multiblock-callout .h2, .text-over-image-c .content-wrapper .content h2, .text-over-image-c .content-wrapper .content .h2, .text-over-image-b .content-wrapper .content h2, .text-over-image-b .content-wrapper .content .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; } @@ -12307,6 +12307,21 @@ section.grid-callout .callout.first-callout img { color: #fff; } +section.large-quote { + padding: 6rem 0; +} +section.large-quote .quote p.text { + padding-top: 2rem; + font-size: 58px; + line-height: 63px; +} +section.large-quote .quote p.attribution { + text-align: right; + margin-top: 3rem; + font-size: 38px; + line-height: 63px; +} + .team-members .team-members-wrapper { display: flex; flex-wrap: wrap; diff --git a/dist/mix-manifest.json b/dist/mix-manifest.json index fabb95a..4c62cc5 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=a0575a91d09edff9dcfe6a3c040c86f6" + "/app.css": "/app.css?id=48efeca789cfedadfb4e95ec9afc57a6" } diff --git a/src/scss/app.scss b/src/scss/app.scss index 5a0502c..3031885 100644 --- a/src/scss/app.scss +++ b/src/scss/app.scss @@ -14,6 +14,7 @@ @import "flex-5050-cta"; @import "flex-grid-callout"; @import "flex-3-column-callouts"; +@import "flex-large-quote"; @import "team-members"; @import "team-member"; diff --git a/src/scss/flex-large-quote.scss b/src/scss/flex-large-quote.scss new file mode 100644 index 0000000..42cb126 --- /dev/null +++ b/src/scss/flex-large-quote.scss @@ -0,0 +1,20 @@ +section.large-quote { + padding: 6rem 0; + + .quote { + @extend .goudy; + + p.text { + padding-top: 2rem; + font-size: 58px; + line-height: 63px; + } + + p.attribution { + text-align: right; + margin-top: 3rem; + font-size: 38px; + line-height: 63px; + } + } +}