Skip to content

Instantly share code, notes, and snippets.

@geckotang
Created March 17, 2015 14:33
Show Gist options
  • Save geckotang/c9685519e2202aafba37 to your computer and use it in GitHub Desktop.
Save geckotang/c9685519e2202aafba37 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
$fontSansSerif : 'Helvetica Neue', Helvetica, '\30D2\30E9\30AE\30CE\89D2\30B4\20\50\72\6F\20\57\33', 'Hiragino Kaku Gothic Pro', '\30E1\30A4\30EA\30AA', Meiryo, '\FF2D\FF33\20\FF30\30B4\30B7\30C3\30AF', sans-serif;
html {
/*エスケープされた日本語*/
font-family: $fontSansSerif;
/*クォーテーションの置き換え */
background: url(hoge.png);
background: url('hoge.png');
background: url("hoge2.png");
/*小数点が四捨五入されたり*/
width: #{'14.285715286%'};
width: 14.285714286%;
width: 141.285714286%;
}
/*@extendが改行するしない*/
.block {
width: 100px;
height: 50px;
}
.block2 {
@extend .block;
height: 10px;
}
@charset "UTF-8";
html {
/*エスケープされた日本語*/
font-family: "Helvetica Neue", Helvetica, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", sans-serif;
/*クォーテーションの置き換え */
background: url(hoge.png);
background: url("hoge.png");
background: url("hoge2.png");
/*小数点が四捨五入されたり*/
width: 14.285715286%;
width: 14.285714286%;
width: 141.285714286%;
}
/*@extendが改行するしない*/
.block, .block2 {
width: 100px;
height: 50px;
}
.block2 {
height: 10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment