2017-09-22 13:22:47 +00:00
|
|
|
|
|
|
|
/* Features */
|
|
|
|
|
|
|
|
.features {
|
2019-11-14 22:09:48 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
2017-09-23 22:54:08 +00:00
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
|
|
|
width: 100%;
|
2019-11-14 22:09:48 +00:00
|
|
|
}
|
2017-09-22 13:22:47 +00:00
|
|
|
|
2019-11-14 22:09:48 +00:00
|
|
|
.features-icon {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 2rem;
|
|
|
|
margin-right: 2rem;
|
|
|
|
fill: _palette(accent1, bg);
|
|
|
|
}
|
2017-09-22 13:22:47 +00:00
|
|
|
|
2019-11-14 22:09:48 +00:00
|
|
|
.features-item {
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: start;
|
2017-09-22 13:22:47 +00:00
|
|
|
|
2019-11-14 22:09:48 +00:00
|
|
|
padding: 4rem 4rem 4rem 3rem;
|
|
|
|
text-align: left;
|
|
|
|
width: 50%;
|
2017-09-22 13:22:47 +00:00
|
|
|
|
2019-11-14 22:09:48 +00:00
|
|
|
@for $i from 1 through _misc(max-features) {
|
|
|
|
$j: 0.035 * $i;
|
2017-09-22 13:22:47 +00:00
|
|
|
|
2019-11-14 22:09:48 +00:00
|
|
|
&:nth-child(#{$i}) {
|
|
|
|
background-color: rgba(0,0,0, $j);
|
2017-09-23 22:54:08 +00:00
|
|
|
}
|
2019-11-14 22:09:48 +00:00
|
|
|
}
|
2017-09-22 13:22:47 +00:00
|
|
|
|
2019-11-14 22:09:48 +00:00
|
|
|
&:nth-child(1) {
|
|
|
|
border-top-left-radius: 3px;
|
|
|
|
}
|
2017-09-22 13:22:47 +00:00
|
|
|
|
2019-11-14 22:09:48 +00:00
|
|
|
&:nth-child(2) {
|
|
|
|
border-top-right-radius: 3px;
|
|
|
|
}
|
2017-09-22 13:22:47 +00:00
|
|
|
|
2019-11-14 22:09:48 +00:00
|
|
|
&:nth-last-child(1) {
|
|
|
|
border-bottom-right-radius: 3px;
|
|
|
|
}
|
2017-09-22 13:22:47 +00:00
|
|
|
|
2019-11-14 22:09:48 +00:00
|
|
|
&:nth-last-child(2) {
|
|
|
|
border-bottom-left-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include breakpoint(medium) {
|
|
|
|
@include padding(3em, 2em);
|
|
|
|
text-align: center;
|
2017-09-22 13:22:47 +00:00
|
|
|
|
2019-11-14 22:09:48 +00:00
|
|
|
&:before {
|
|
|
|
left: 0;
|
|
|
|
margin: 0 0 (_size(element-margin) * 0.5) 0;
|
|
|
|
position: relative;
|
|
|
|
top: 0;
|
2017-09-23 22:54:08 +00:00
|
|
|
}
|
2019-11-14 22:09:48 +00:00
|
|
|
}
|
2017-09-22 13:22:47 +00:00
|
|
|
|
2019-11-14 22:09:48 +00:00
|
|
|
@include breakpoint(small) {
|
|
|
|
@include padding(3em, 0);
|
|
|
|
background-color: transparent !important;
|
|
|
|
border-top: solid 2px _palette(border);
|
|
|
|
width: 100%;
|
2017-09-22 13:22:47 +00:00
|
|
|
|
2019-11-14 22:09:48 +00:00
|
|
|
&:first-child {
|
|
|
|
border-top: 0;
|
2017-09-23 22:54:08 +00:00
|
|
|
}
|
|
|
|
}
|
2019-11-14 22:09:48 +00:00
|
|
|
}
|