scss _retina.scss

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scss _retina.scss相关的知识,希望对你有一定的参考价值。

@import "retina";

.body-text {
  font-weight: normal;

  @include retina {
    font-weight: 300;
  }
}
@mixin retina($ratio: 1.5) {
  $dpi: $ratio * 96;
  $opera-ratio: $ratio * 100;

  @media only screen and (-webkit-min-device-pixel-ratio: #{$ratio}),
         only screen and (     -o-min-device-pixel-ratio: '#{$opera-ratio}/100'),
         only screen and (                min-resolution: #{$dpi}dpi),
         only screen and (                min-resolution: #{$ratio}dppx) {
    @content;
  }
}

以上是关于scss _retina.scss的主要内容,如果未能解决你的问题,请参考以下文章

如何为所有 scss 文件定义 sass 变量

scss 修复基础bug基金会scss基础_functions.scss

scss _hr.scss

scss _dotted线-ellipsis.scss

scss _centering.scss

scss _link.scss