diff --git a/dist/app.css b/dist/app.css index e427149..c38f168 100644 --- a/dist/app.css +++ b/dist/app.css @@ -12540,6 +12540,13 @@ section.services-blocks .block svg { section.services-blocks .block h3, section.services-blocks .block .h3 { font-weight: bold; } +section.services-blocks .block:nth-of-type(even) { + background-color: #F2F2F2; + color: #333333; +} +section.services-blocks .block:nth-of-type(even) h3, section.services-blocks .block:nth-of-type(even) .h3 { + color: #063C5A; +} section.services-blocks .block:first-of-type { background-color: #B9AF78; color: #fff; diff --git a/dist/mix-manifest.json b/dist/mix-manifest.json index a5ee499..4ce4fbd 100644 --- a/dist/mix-manifest.json +++ b/dist/mix-manifest.json @@ -1,4 +1,4 @@ { "/app.js": "/app.js?id=ac271f1d4ead304b5ae143995cb9455e", - "/app.css": "/app.css?id=5eac0e800d054e042b38219bfbe29f71" + "/app.css": "/app.css?id=6604b597a4ff28bb9e89d0fc5ccd0818" } diff --git a/src/scss/flex-services-blocks.scss b/src/scss/flex-services-blocks.scss index b52261f..300f3fd 100644 --- a/src/scss/flex-services-blocks.scss +++ b/src/scss/flex-services-blocks.scss @@ -19,6 +19,15 @@ section.services-blocks { font-weight: bold; } + &:nth-of-type(even) { + background-color: $c-offWhite; + color: $c-textGrey; + + h3 { + color: $c-navy; + } + } + &:first-of-type { background-color: $c-tan; color: $c-white;