@for $i from 0 through 10 {
  $string-val: $i * 10;
  $number-val: $i / 10;

  .o-#{$string-val} {
    opacity: $number-val;
  }
}
