Created
February 26, 2015 15:25
-
-
Save tourdefran/fce056f7c9bbbe19fcc2 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
<html> | |
<head></head> | |
<body> | |
<h1>Hola, soy un h1</h1> | |
<p>Hola, soy un p!</p> | |
<ul> | |
<li>yo soy un item de una lista, je</li> | |
<li>yo también</li> | |
<li>yo también</li> | |
<li>yo también</li> | |
<li>yo también</li> | |
<li>yo también</li> | |
</ul> | |
<img src="http://www.articolotre.com/wp-content/uploads/2013/07/gatti1-300x300.jpg" alt="Felos" /> | |
</body> | |
</html> |
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.12) | |
// Compass (v1.0.3) | |
// ---- | |
$font-stack: Helvetica, sans-serif; | |
$primary-color: #333; | |
body { | |
font: 100% $font-stack; | |
color: $primary-color; | |
} |
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 { | |
font: 100% Helvetica, sans-serif; | |
color: #333; | |
} |
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
<html> | |
<head></head> | |
<body> | |
<h1>Hola, soy un h1</h1> | |
<p>Hola, soy un p!</p> | |
<ul> | |
<li>yo soy un item de una lista, je</li> | |
<li>yo también</li> | |
<li>yo también</li> | |
<li>yo también</li> | |
<li>yo también</li> | |
<li>yo también</li> | |
</ul> | |
<img src="http://www.articolotre.com/wp-content/uploads/2013/07/gatti1-300x300.jpg" alt="Felos" /> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment