mirror of
https://github.com/biobulkbende/biobulkbende.org.git
synced 2024-11-15 12:23:06 +00:00
92 lines
1.0 KiB
SCSS
92 lines
1.0 KiB
SCSS
.row{
|
|
|
|
@include clearfix();
|
|
|
|
&--t-padding{
|
|
padding-top: 80px;
|
|
}
|
|
|
|
&--gutters {
|
|
margin-right: -65px;
|
|
}
|
|
|
|
&--gutters-large {
|
|
margin-right: -100px;
|
|
}
|
|
|
|
&--gutters-small {
|
|
margin-right: -45px;
|
|
}
|
|
|
|
&--gutters > div {
|
|
padding-right: 60px;
|
|
}
|
|
|
|
&--gutters-large > div {
|
|
padding-right: 100px;
|
|
}
|
|
|
|
&--gutters-small > div {
|
|
padding-right: 45px;
|
|
}
|
|
|
|
&__b-margin-until-medium{
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
@include atLarge(){
|
|
|
|
&__b-margin-until-medium{
|
|
margin-bottom: 0rem;
|
|
}
|
|
|
|
&__medium-4 {
|
|
float: left;
|
|
width: 33.33%;
|
|
}
|
|
|
|
&__medium-4--larger{
|
|
width: 27%;
|
|
}
|
|
|
|
&__medium-6 {
|
|
float: left;
|
|
width: 50%;
|
|
}
|
|
|
|
&__medium-8 {
|
|
float: right;
|
|
width: 66.66%;
|
|
}
|
|
|
|
&__medium-8--smaller{
|
|
width: 63%;
|
|
}
|
|
|
|
}
|
|
|
|
/* Begin Equal Height Rules */
|
|
.flexbox &--equal-height-at-medium {
|
|
|
|
@include atMedium(){
|
|
display: flex;
|
|
}
|
|
|
|
& > div {
|
|
float: none;
|
|
display: flex;
|
|
}
|
|
}
|
|
|
|
.flexbox &--equal-height-at-large {
|
|
|
|
@include atMedium(){
|
|
display: flex;
|
|
}
|
|
|
|
& > div {
|
|
float: none;
|
|
display: flex;
|
|
}
|
|
}
|
|
} |