Skip to content

Instantly share code, notes, and snippets.

@runa-ichinose
Created May 12, 2015 06:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save runa-ichinose/63b95bfe102419063436 to your computer and use it in GitHub Desktop.
Save runa-ichinose/63b95bfe102419063436 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.13)
// Compass (v1.0.3)
// ----
// 付与するベンダープレフィックス
$prefixList: -webkit-, -moz-, -o-, null;
// background-size
@mixin bg_size($w, $h: auto) {
@each $prefix in $prefixList {
#{$prefix}background-size: $w $h;
}
}
///////////////////
body {
background: #fff url(../imgbg_logo.png)no-repeat fixed;
@media screen and (-webkit-min-device-@ixel-radio: 1.5),
(min-resolution: 2dppx) {
@include bg_size(690px / 2, auto);
}
}
Invalid CSS after "...kit-min-device-": expected ")", was "@ixel-radio: 1.5),"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment