WIP
This commit is contained in:
24
dist/app.css
vendored
24
dist/app.css
vendored
@@ -12276,6 +12276,30 @@ section.grid-callout .callout.first-callout img {
|
||||
height: 98px;
|
||||
}
|
||||
|
||||
.flex_3_column_callouts .callout {
|
||||
padding: 3rem 3rem 5rem 4rem;
|
||||
line-height: 37px;
|
||||
}
|
||||
.flex_3_column_callouts .callout p.headline {
|
||||
font-size: 30px;
|
||||
font-weight: 600;
|
||||
}
|
||||
.flex_3_column_callouts .callout:first-of-type {
|
||||
background-color: #063C5A;
|
||||
color: #fff;
|
||||
}
|
||||
.flex_3_column_callouts .callout:nth-of-type(2) {
|
||||
background-color: #F2F2F2;
|
||||
color: #063C5A;
|
||||
}
|
||||
.flex_3_column_callouts .callout:nth-of-type(2) img {
|
||||
filter: brightness(0) saturate(100%) invert(21%) sepia(57%) saturate(688%) hue-rotate(162deg) brightness(92%) contrast(88%);
|
||||
}
|
||||
.flex_3_column_callouts .callout:last-of-type {
|
||||
background-color: #2B2400;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.team-members .team-members-wrapper {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
|
||||
2
dist/mix-manifest.json
vendored
2
dist/mix-manifest.json
vendored
@@ -1,4 +1,4 @@
|
||||
{
|
||||
"/app.js": "/app.js?id=099e96d934e937b07341f2ca9fb82ec2",
|
||||
"/app.css": "/app.css?id=f7dcde327cf9502f4a38dd734209379f"
|
||||
"/app.css": "/app.css?id=00de5b39848e225c331bd0de5505825a"
|
||||
}
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
@import "flex-multiblock-callout";
|
||||
@import "flex-5050-cta";
|
||||
@import "flex-grid-callout";
|
||||
@import "flex-3-column-callouts";
|
||||
|
||||
@import "team-members";
|
||||
@import "team-member";
|
||||
|
||||
30
src/scss/flex-3-column-callouts.scss
Normal file
30
src/scss/flex-3-column-callouts.scss
Normal file
@@ -0,0 +1,30 @@
|
||||
.flex_3_column_callouts {
|
||||
.callout {
|
||||
padding: 3rem 3rem 5rem 4rem;
|
||||
line-height: 37px;
|
||||
|
||||
p.headline {
|
||||
font-size: 30px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
&:first-of-type {
|
||||
background-color: $c-navy;
|
||||
color: $c-white;
|
||||
}
|
||||
|
||||
&:nth-of-type(2) {
|
||||
background-color: $c-offWhite;
|
||||
color: $c-navy;
|
||||
|
||||
img {
|
||||
filter: brightness(0) saturate(100%) invert(21%) sepia(57%) saturate(688%) hue-rotate(162deg) brightness(92%) contrast(88%);
|
||||
}
|
||||
}
|
||||
|
||||
&:last-of-type {
|
||||
background-color: $c-charcoal;
|
||||
color: $c-white;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user