This commit is contained in:
2025-05-07 15:03:27 -07:00
parent e3bac7b9ec
commit 7e3064fd94
3 changed files with 24 additions and 1 deletions

8
dist/app.css vendored
View File

@@ -12221,6 +12221,14 @@ section.grid-callout .callout p.headline {
font-weight: 600;
font-size: 30px;
}
section.grid-callout .standard-callouts .col:first-of-type .callout {
background-color: #B9AF78;
color: #fff;
}
section.grid-callout .standard-callouts .col:nth-of-type(2) .callout {
background-color: #F2F2F2;
color: #063C5A;
}
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=201029dfb334f2087ed561eb1a7d45a6"
"/app.css": "/app.css?id=d09221b1cfbdbc3c636dca8ae0586fce"
}

View File

@@ -24,6 +24,21 @@ section.grid-callout {
}
.standard-callouts {
.col {
&:first-of-type {
.callout {
background-color: $c-tan;
color: $c-white;
}
}
&:nth-of-type(2) {
.callout {
background-color: $c-offWhite;
color: $c-navy;
}
}
}
}
.callout.first-callout {