biobulkbende.org/app/assets/scss/modules/_page-section.scss

97 lines
1.4 KiB
SCSS

.page-section{
position: relative;
&--tb-padding{
padding: 1.2rem 0;
@include atMedium(){
position: unset;
padding: 4.5rem 0;
}
}
&--t-padding{
padding-top: 1.2rem;
@include atMedium(){
position: unset;
padding-top: 4.5rem;
}
}
&--b-padding-small{
padding-bottom: 1rem;
@include atMedium(){
position: unset;
padding-top: 3.8rem;
}
}
&--b-margin{
margin-bottom: 70px;
@include atMedium{
margin-bottom: -140px;
}
}
&--red{
background-color: $myRed;
color: #fff;
}
&--darkGreen{
background-color: $myDarkGreen;
color: #fff;
}
&--lightGreen{
background-color: $myLightGreen;
color: #fff;
}
&--arrow-down{
width: 0;
height: 0;
border-left: 70px solid transparent;
border-right: 70px solid transparent;
border-top: 85px solid $myRed;
position: absolute;
bottom: -60px;
left: 50%;
transform: translateX(-50%);
@include atSmall{
position: relative;
top: -10px;
margin: auto;
left: 0;
transform: translateX(0%);
}
@include atMedium{
position: relative;
top: 20px;
margin: auto;
left: 0;
transform: translateX(0%);
}
}
// &--testimonials{
// background: #e0e6ef;
// // @include atMedium(){
// // &.lazyloaded {
// // background: url('../../assets/images/testimonials-bg.jpg') top center no-repeat;
// // background-size: cover;
// // }
// // }
// }
}