2020-03-29 18:58:41 +00:00
|
|
|
.l-wrapper {
|
|
|
|
width: 100%;
|
2020-03-31 12:58:15 +00:00
|
|
|
max-width: 70rem;
|
2020-03-29 18:58:41 +00:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
|
2020-03-31 13:09:12 +00:00
|
|
|
.l-section-pad {
|
2020-03-31 12:58:15 +00:00
|
|
|
padding: 24px 8px;
|
|
|
|
|
2020-03-31 15:15:56 +00:00
|
|
|
@media (min-width: $bp-s) {
|
|
|
|
padding: 32px;
|
|
|
|
}
|
|
|
|
|
2020-03-31 12:58:15 +00:00
|
|
|
@media (min-width: $bp-m) {
|
2020-03-31 15:15:56 +00:00
|
|
|
padding: 64px;
|
2020-03-31 12:58:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: $bp-l) {
|
2020-03-31 15:15:56 +00:00
|
|
|
padding: 96px 0;
|
2020-03-31 12:58:15 +00:00
|
|
|
}
|
2020-03-31 14:29:47 +00:00
|
|
|
|
|
|
|
// reduce padding bottom
|
|
|
|
&--pb-reduce {
|
|
|
|
padding-bottom: 8px;
|
|
|
|
|
|
|
|
@media (min-width: $bp-m) {
|
|
|
|
padding-bottom: 16px;
|
|
|
|
}
|
|
|
|
}
|
2020-03-31 12:58:15 +00:00
|
|
|
}
|
|
|
|
|
2020-03-29 18:58:41 +00:00
|
|
|
// #position
|
|
|
|
|
|
|
|
.l-absolute {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
.l-relative {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2020-03-30 16:54:55 +00:00
|
|
|
.l-underlay {
|
|
|
|
z-index: -1;
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
2020-03-29 18:58:41 +00:00
|
|
|
// #sizes
|
|
|
|
|
2020-03-29 20:09:54 +00:00
|
|
|
.l-screen-min-full {
|
|
|
|
width: 100%;
|
|
|
|
min-height: 100vh;
|
|
|
|
}
|
|
|
|
|
2020-03-29 18:58:41 +00:00
|
|
|
.l-screen-full {
|
|
|
|
width: 100%;
|
|
|
|
height: 100vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
// #flex
|
|
|
|
|
|
|
|
.l-flex {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.l-flex-center {
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.l-justify-around {
|
|
|
|
justify-content: space-around;
|
|
|
|
}
|
|
|
|
|
|
|
|
.l-flex-column {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.l-flex-row {
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.l-flex-wrap {
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
2020-03-30 16:54:55 +00:00
|
|
|
.l-flex-list-row {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
padding-left: 0;
|
|
|
|
list-style: none;
|
2020-03-31 14:29:47 +00:00
|
|
|
margin: 0;
|
2020-03-30 16:54:55 +00:00
|
|
|
}
|
|
|
|
|
2020-03-31 13:19:53 +00:00
|
|
|
.l-list-bare {
|
|
|
|
list-style: none;
|
|
|
|
padding-left: 0;
|
2020-03-31 14:29:47 +00:00
|
|
|
margin: 0;
|
2020-03-31 13:19:53 +00:00
|
|
|
}
|
|
|
|
|