add asentus template

This commit is contained in:
2024-05-21 05:13:26 +02:00
parent d902ea6add
commit 2bcf4fe852
114 changed files with 33775 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
/*------------------------------------------------------------------
[Promo Section]
------------------------------------------------------------------*/
.promo-section {
@media (max-width: $screen-sm-max) {
.promo-section-col {
padding-top: 100px;
padding-bottom: 100px;
}
}
@media (min-width: $screen-md-min) {
@include position(relative);
height: $ver-center-block-height;
.promo-section {
&-col {
width: 45%;
}
&-img-left {
@include position(absolute, $top: 0, $right: 50%);
}
&-img-right {
@include position(absolute, $top: 0, $left: 50%);
}
}
.ver-center {
display: table;
height: $ver-center-block-height;
&-aligned {
display: table-cell;
vertical-align: middle;
}
}
}
}