This commit is contained in:
2025-06-02 16:42:46 -07:00
parent 65114abf29
commit bc29a6f3ea
3 changed files with 22 additions and 18 deletions

20
dist/app.css vendored
View File

@@ -12555,15 +12555,17 @@ section.services-blocks .block svg {
section.services-blocks .block h3, section.services-blocks .block .h3 { section.services-blocks .block h3, section.services-blocks .block .h3 {
font-weight: bold; font-weight: bold;
} }
section.services-blocks .block:nth-of-type(even) { @media (max-width: 991.98px) {
background-color: #F2F2F2; section.services-blocks .block:nth-of-type(even) {
color: #333333; 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:nth-of-type(even) h3, section.services-blocks .block:nth-of-type(even) .h3 {
} color: #063C5A;
section.services-blocks .block:nth-of-type(even) svg { }
filter: brightness(0) saturate(100%) invert(21%) sepia(57%) saturate(688%) hue-rotate(162deg) brightness(92%) contrast(88%); section.services-blocks .block:nth-of-type(even) svg {
filter: brightness(0) saturate(100%) invert(21%) sepia(57%) saturate(688%) hue-rotate(162deg) brightness(92%) contrast(88%);
}
} }
section.services-blocks .block:first-of-type { section.services-blocks .block:first-of-type {
background-color: #B9AF78; background-color: #B9AF78;

View File

@@ -1,4 +1,4 @@
{ {
"/app.js": "/app.js?id=ac271f1d4ead304b5ae143995cb9455e", "/app.js": "/app.js?id=ac271f1d4ead304b5ae143995cb9455e",
"/app.css": "/app.css?id=8a50b8cdb89f246be53178cfe2b28e65" "/app.css": "/app.css?id=06870d25aaea3f68a0a39d5c93bc5218"
} }

View File

@@ -34,16 +34,18 @@ section.services-blocks {
font-weight: bold; font-weight: bold;
} }
&:nth-of-type(even) { @include media-breakpoint-down(lg) {
background-color: $c-offWhite; &:nth-of-type(even) {
color: $c-textGrey; background-color: $c-offWhite;
color: $c-textGrey;
h3 { h3 {
color: $c-navy; color: $c-navy;
} }
svg { svg {
filter: brightness(0) saturate(100%) invert(21%) sepia(57%) saturate(688%) hue-rotate(162deg) brightness(92%) contrast(88%); filter: brightness(0) saturate(100%) invert(21%) sepia(57%) saturate(688%) hue-rotate(162deg) brightness(92%) contrast(88%);
}
} }
} }