Sha256: 9048934fcd0ca872952c36f5175cbcc92d30d2c1734e9756baa9e385f129e316

Contents?: true

Size: 1.09 KB

Versions: 1

Compression:

Stored size: 1.09 KB

Contents

@mixin for-hd()
  @media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5)
    @content

@mixin for-ios-hd()
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2)
    @content

@mixin for-no-js() 
  .no-js body
    @content

@mixin for-screen()
  @media only screen
    @content

@mixin for-print()
  @media only print
    @content

@mixin for-mobile-portrait()
  @media only screen and ( max-width: 479px)
    @content
  .mq-mp
    @content

@mixin for-mobile-landscape()
  @media only screen and (max-width: 767px) and (min-width: 480px)
    @content
  .mp-ml
    @content

@mixin for-tablets()
  @media only screen and (max-width: 1024px) and (min-width: 768px)
    @content
  .mp-tb
    @content

@mixin for-large-screens()
  @media only screen and (min-width: 769px)
    @content
  .mq-ls
    @content

@mixin for-small-screens()
  @media only screen and (max-width: 768px)
    @content
  .mq-sm
    @content

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
iugu-ux-0.7.0 vendor/assets/stylesheets/iugu-ux/adaptative-mixins.sass