This commit is contained in:
2025-05-07 15:06:17 -07:00
parent 84f79c5dc1
commit 36f1d7471a
3 changed files with 16 additions and 5 deletions

8
dist/app.css vendored
View File

@@ -12228,14 +12228,18 @@ section.grid-callout .callout p.headline {
font-weight: 600;
font-size: 30px;
}
section.grid-callout .standard-callouts .col:first-of-type .callout {
section.grid-callout .standard-callouts .col:nth-of-type(1) .callout, section.grid-callout .standard-callouts .col:nth-of-type(6) .callout {
background-color: #B9AF78;
color: #fff;
}
section.grid-callout .standard-callouts .col:nth-of-type(2) .callout {
section.grid-callout .standard-callouts .col:nth-of-type(2) .callout, section.grid-callout .standard-callouts .col:nth-of-type(4) .callout {
background-color: #F2F2F2;
color: #063C5A;
}
section.grid-callout .standard-callouts .col:nth-of-type(3) .callout, section.grid-callout .standard-callouts .col:nth-of-type(5) .callout {
background-color: #075179;
color: #fff;
}
section.grid-callout .callout.first-callout {
padding: 2rem 3rem 3rem;
background-color: #063C5A;

View File

@@ -1,4 +1,4 @@
{
"/app.js": "/app.js?id=099e96d934e937b07341f2ca9fb82ec2",
"/app.css": "/app.css?id=28e3538abd3cedb0226323dc396b9baf"
"/app.css": "/app.css?id=67646efb0d9b1aca162a58a7333cfd4f"
}

View File

@@ -34,19 +34,26 @@ section.grid-callout {
.standard-callouts {
.col {
&:first-of-type {
&:nth-of-type(1), &:nth-of-type(6) {
.callout {
background-color: $c-tan;
color: $c-white;
}
}
&:nth-of-type(2) {
&:nth-of-type(2), &:nth-of-type(4) {
.callout {
background-color: $c-offWhite;
color: $c-navy;
}
}
&:nth-of-type(3), &:nth-of-type(5) {
.callout {
background-color: $c-lightNavy;
color: $c-white;
}
}
}
}