Created
March 17, 2015 14:34
-
-
Save geckotang/8a3e203e411ae20fa860 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// libsass (v3.1.0) | |
// ---- | |
$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; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@charset "UTF-8"; | |
html { | |
/*エスケープされた日本語*/ | |
font-family: '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; | |
/*クォーテーションの置き換え */ | |
background: url(hoge.png); | |
background: url('hoge.png'); | |
background: url("hoge2.png"); | |
/*小数点が四捨五入されたり*/ | |
width: 14.285715286%; | |
width: 14.28571%; | |
width: 141.28571%; } | |
/*@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