This commit is contained in:
2025-05-07 13:54:59 -07:00
parent 76933a2af2
commit 7d41159e79
5 changed files with 36 additions and 2 deletions

17
dist/app.css vendored
View File

@@ -12037,6 +12037,20 @@ a {
font-family: "Goudy Bookletter 1911", serif; font-family: "Goudy Bookletter 1911", serif;
} }
.cta-button {
margin-bottom: 0;
}
.cta-button a {
background-color: #063C5A;
color: #fff;
display: inline-block;
height: 52px;
width: 360px;
max-width: 100%;
border-radius: 42px;
text-align: center;
}
.intro_block, .team-member-top, .team-members-top { .intro_block, .team-member-top, .team-members-top {
background-size: cover; background-size: cover;
background-position: center center; background-position: center center;
@@ -12140,11 +12154,14 @@ section.flex-5050-cta .overflow-image {
left: 50%; left: 50%;
width: 50%; width: 50%;
height: calc(100% - 10rem); height: calc(100% - 10rem);
background-position: center;
background-size: cover;
} }
section.flex-5050-cta h2, section.flex-5050-cta .h2 { section.flex-5050-cta h2, section.flex-5050-cta .h2 {
color: #063C5A; color: #063C5A;
font-size: 70px; font-size: 70px;
line-height: 70px; line-height: 70px;
margin-bottom: 3rem;
} }
.team-members .team-members-wrapper { .team-members .team-members-wrapper {

View File

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

View File

@@ -8,6 +8,8 @@ section.flex-5050-cta {
left: 50%; left: 50%;
width: 50%; width: 50%;
height: calc(100% - 10rem); height: calc(100% - 10rem);
background-position: center;
background-size: cover;
} }
h2 { h2 {
@@ -15,5 +17,6 @@ section.flex-5050-cta {
color: $c-navy; color: $c-navy;
font-size: 70px; font-size: 70px;
line-height: 70px; line-height: 70px;
margin-bottom: 3rem;
} }
} }

View File

@@ -9,3 +9,17 @@ a {
.goudy { .goudy {
font-family: 'Goudy Bookletter 1911', serif; font-family: 'Goudy Bookletter 1911', serif;
} }
.cta-button {
margin-bottom: 0;
a {
background-color: $c-navy;
color: $c-white;
display: inline-block;
height: 52px;
width: 360px;
max-width: 100%;
border-radius: 42px;
text-align: center;
}
}

View File

@@ -7,7 +7,7 @@
{{{ content }}} {{{ content }}}
{{#if button_target}} {{#if button_target}}
<p class="cta-button"> <p class="cta-button mt-4">
<a href="{{ button_target }}">{{ button_text }}</a> <a href="{{ button_target }}">{{ button_text }}</a>
</p> </p>
{{/if}} {{/if}}