_images.scss 189 字节
Newer Older
C
codecalm 已提交
1 2
.img-responsive {
  background: no-repeat center/cover;
3
  padding-top: percentage(.75);
C
codecalm 已提交
4 5
}

C
codecalm 已提交
6
@each $key, $ratio in $aspect-ratios {
C
codecalm 已提交
7
  .img-responsive-#{$key} {
C
codecalm 已提交
8
    padding-top: $ratio;
C
codecalm 已提交
9 10
  }
}