This commit is contained in:
2025-05-07 15:45:52 -07:00
parent 94bdb09e4e
commit a4be0a6a3f
4 changed files with 38 additions and 2 deletions

17
dist/app.css vendored
View File

@@ -12033,7 +12033,7 @@ a {
text-decoration: none; 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; font-family: "Goudy Bookletter 1911", serif;
} }
@@ -12307,6 +12307,21 @@ section.grid-callout .callout.first-callout img {
color: #fff; 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 { .team-members .team-members-wrapper {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;

View File

@@ -1,4 +1,4 @@
{ {
"/app.js": "/app.js?id=099e96d934e937b07341f2ca9fb82ec2", "/app.js": "/app.js?id=099e96d934e937b07341f2ca9fb82ec2",
"/app.css": "/app.css?id=a0575a91d09edff9dcfe6a3c040c86f6" "/app.css": "/app.css?id=48efeca789cfedadfb4e95ec9afc57a6"
} }

View File

@@ -14,6 +14,7 @@
@import "flex-5050-cta"; @import "flex-5050-cta";
@import "flex-grid-callout"; @import "flex-grid-callout";
@import "flex-3-column-callouts"; @import "flex-3-column-callouts";
@import "flex-large-quote";
@import "team-members"; @import "team-members";
@import "team-member"; @import "team-member";

View File

@@ -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;
}
}
}