Created
November 22, 2014 00:22
-
-
Save Thargelion/0d313f9790c45fa0c5e6 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
<div class="hola"> | |
<h1>hola sass</h1> | |
<p>párrafo</p> | |
</div> |
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
// ---- | |
// Sass (v3.4.7) | |
// Compass (v1.0.1) | |
// ---- | |
body | |
background: red | |
.hola | |
font-family: arial | |
h1 | |
font-size: 25px | |
color: white | |
p | |
font-size: 16px | |
color: green | |
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
body { | |
background: red; | |
} | |
.hola { | |
font-family: arial; | |
} | |
.hola h1 { | |
font-size: 25px; | |
color: white; | |
} | |
.hola p { | |
font-size: 16px; | |
color: green; | |
} |
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
<div class="hola"> | |
<h1>hola sass</h1> | |
<p>párrafo</p> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment