diff --git a/dist/app.css b/dist/app.css index da04e36..f158261 100644 --- a/dist/app.css +++ b/dist/app.css @@ -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; diff --git a/dist/mix-manifest.json b/dist/mix-manifest.json index 1e6c771..a92f9eb 100644 --- a/dist/mix-manifest.json +++ b/dist/mix-manifest.json @@ -1,4 +1,4 @@ { "/app.js": "/app.js?id=099e96d934e937b07341f2ca9fb82ec2", - "/app.css": "/app.css?id=201029dfb334f2087ed561eb1a7d45a6" + "/app.css": "/app.css?id=d09221b1cfbdbc3c636dca8ae0586fce" } diff --git a/src/scss/flex-grid-callout.scss b/src/scss/flex-grid-callout.scss index b345c4d..49e6133 100644 --- a/src/scss/flex-grid-callout.scss +++ b/src/scss/flex-grid-callout.scss @@ -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 {