Archived
1
0
Fork 0

Converting application less to sass.

This commit is contained in:
Henrik Hautakoski 2018-08-19 00:26:22 +02:00
parent b30be955ca
commit fec6b6caa5
26 changed files with 1140 additions and 0 deletions

View file

@ -0,0 +1,43 @@
// ----------------------------------
// Feature section
// ----------------------------------
.feature-section {
@extend .section;
> div + div {
margin-top: 2em;
}
.steps {
@extend .row;
.steps-img {
@extend .center-block;
width: 270px;
height: 220px;
}
.steps-step1 .steps-img {
background-image: url(#{$image-path}/step1.png);
}
.steps-step2 .steps-img {
background-image: url(#{$image-path}/step2.png);
}
.steps-step3 .steps-img {
background-image: url(#{$image-path}/step3.png);
}
.steps-step1,
.steps-step2,
.steps-step3 {
@include make-md-column(4);
@extend .text-center;
}
}
.call-to-action {
@extend .text-center;
}
}