WIP
This commit is contained in:
13
dist/app.css
vendored
13
dist/app.css
vendored
@@ -12536,12 +12536,16 @@ section.services-blocks .blocks {
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 1.5rem;
|
gap: 1.5rem;
|
||||||
}
|
}
|
||||||
|
@media (min-width: 992px) {
|
||||||
|
section.services-blocks .blocks {
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
|
}
|
||||||
section.services-blocks .block {
|
section.services-blocks .block {
|
||||||
position: relative;
|
position: relative;
|
||||||
padding: 2rem 1.5rem;
|
padding: 2rem 1.5rem;
|
||||||
background-color: #075179;
|
background-color: #075179;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
flex: 1 1 calc(50% - 0.75rem);
|
|
||||||
}
|
}
|
||||||
section.services-blocks .block svg {
|
section.services-blocks .block svg {
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
@@ -12561,8 +12565,15 @@ section.services-blocks .block:nth-of-type(even) svg {
|
|||||||
}
|
}
|
||||||
section.services-blocks .block:first-of-type {
|
section.services-blocks .block:first-of-type {
|
||||||
background-color: #B9AF78;
|
background-color: #B9AF78;
|
||||||
|
}
|
||||||
|
@media (min-width: 992px) {
|
||||||
|
section.services-blocks .block {
|
||||||
|
flex: 1 1 calc(50% - 0.75rem);
|
||||||
|
}
|
||||||
|
section.services-blocks .block .block:first-of-type {
|
||||||
flex: 1 1 100%;
|
flex: 1 1 100%;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
section.services-blocks .large-arrow {
|
section.services-blocks .large-arrow {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 1.5rem;
|
right: 1.5rem;
|
||||||
|
|||||||
2
dist/mix-manifest.json
vendored
2
dist/mix-manifest.json
vendored
@@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"/app.js": "/app.js?id=ac271f1d4ead304b5ae143995cb9455e",
|
"/app.js": "/app.js?id=ac271f1d4ead304b5ae143995cb9455e",
|
||||||
"/app.css": "/app.css?id=d2d5d155f950e643ce7db448704b9bd9"
|
"/app.css": "/app.css?id=ad9d8712074abd3bdff369f4b1278ecd"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,6 +12,10 @@ section.services-blocks {
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 1.5rem;
|
gap: 1.5rem;
|
||||||
|
|
||||||
|
@include media-breakpoint-up(lg) {
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.block {
|
.block {
|
||||||
@@ -19,7 +23,6 @@ section.services-blocks {
|
|||||||
padding: 2rem 1.5rem;
|
padding: 2rem 1.5rem;
|
||||||
background-color: $c-lightNavy;
|
background-color: $c-lightNavy;
|
||||||
color: $c-white;
|
color: $c-white;
|
||||||
flex: 1 1 calc(50% - 0.75rem);
|
|
||||||
|
|
||||||
svg {
|
svg {
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
@@ -44,9 +47,18 @@ section.services-blocks {
|
|||||||
|
|
||||||
&:first-of-type {
|
&:first-of-type {
|
||||||
background-color: $c-tan;
|
background-color: $c-tan;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include media-breakpoint-up(lg) {
|
||||||
|
flex: 1 1 calc(50% - 0.75rem);
|
||||||
|
|
||||||
|
.block {
|
||||||
|
&:first-of-type {
|
||||||
flex: 1 1 100%;
|
flex: 1 1 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.large-arrow {
|
.large-arrow {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
|||||||
Reference in New Issue
Block a user