This commit is contained in:
2025-05-07 15:24:57 -07:00
parent 980a2a3313
commit 14cd88faff
4 changed files with 56 additions and 1 deletions

24
dist/app.css vendored
View File

@@ -12276,6 +12276,30 @@ section.grid-callout .callout.first-callout img {
height: 98px;
}
.flex_3_column_callouts .callout {
padding: 3rem 3rem 5rem 4rem;
line-height: 37px;
}
.flex_3_column_callouts .callout p.headline {
font-size: 30px;
font-weight: 600;
}
.flex_3_column_callouts .callout:first-of-type {
background-color: #063C5A;
color: #fff;
}
.flex_3_column_callouts .callout:nth-of-type(2) {
background-color: #F2F2F2;
color: #063C5A;
}
.flex_3_column_callouts .callout:nth-of-type(2) img {
filter: brightness(0) saturate(100%) invert(21%) sepia(57%) saturate(688%) hue-rotate(162deg) brightness(92%) contrast(88%);
}
.flex_3_column_callouts .callout:last-of-type {
background-color: #2B2400;
color: #fff;
}
.team-members .team-members-wrapper {
display: flex;
flex-wrap: wrap;

View File

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

View File

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

View File

@@ -0,0 +1,30 @@
.flex_3_column_callouts {
.callout {
padding: 3rem 3rem 5rem 4rem;
line-height: 37px;
p.headline {
font-size: 30px;
font-weight: 600;
}
&:first-of-type {
background-color: $c-navy;
color: $c-white;
}
&:nth-of-type(2) {
background-color: $c-offWhite;
color: $c-navy;
img {
filter: brightness(0) saturate(100%) invert(21%) sepia(57%) saturate(688%) hue-rotate(162deg) brightness(92%) contrast(88%);
}
}
&:last-of-type {
background-color: $c-charcoal;
color: $c-white;
}
}
}