RPeraltaJr
4/5/2017 - 8:49 PM

Sass/Scss Loop

Sass/Scss Loop

.image {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  @for $i from 1 through 4 {
      &--#{$i} {
          background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/apply/expect-'+ $i + '.jpg');
      }
  }
}

@for $i from 1 through 100 {
  .flex-xs-#{$i} {
    flex: 1 round(percentage($i/100)); // flex-xs-1 ... flex-xs-100
  }
}