Created
July 29, 2014 17:40
-
-
Save edutrul/d733fc5f1c46964fa8fa to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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
<body> | |
Hola mundo | |
</body> |
This file contains 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
// ---- | |
// Sass (v3.3.11) | |
// Compass (v1.0.0.alpha.21) | |
// ---- | |
$font-stack: Helvetica, sans-serif; | |
$primary-color: #ff9900; | |
$font-size-high: 150px; | |
body { | |
font: 100% $font-stack; | |
color: $primary-color; | |
font-size: $font-size-high; | |
} |
This file contains 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
body { | |
font: 100% Helvetica, sans-serif; | |
color: #ff9900; | |
font-size: 150px; | |
} |
This file contains 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
<body> | |
Hola mundo | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment