Project upload

This commit is contained in:
2022-04-24 03:02:39 -05:00
parent 92c64c30fe
commit c2ce33c3fb
71 changed files with 20006 additions and 0 deletions

28
sass/gui/_promo-block.scss Executable file
View File

@@ -0,0 +1,28 @@
/*------------------------------------------------------------------
[Promo Block]
------------------------------------------------------------------*/
.promo-block {
padding: 220px 0 130px;
.promo-block-title {
@include font($size: 70px);
color: $color-white;
line-height: 1;
@media (max-width: $screen-xs-min) {
@include font($size: 50px);
}
}
.promo-block-text {
@include font($size: 25px);
color: $color-white;
}
.promo-block-divider {
border-bottom: 1px solid rgba(255,255,255,.4);
padding-bottom: 20px;
margin-bottom: 35px;
}
}