Skip to content

Instantly share code, notes, and snippets.

@Thargelion
Created November 22, 2014 00:22
Show Gist options
  • Save Thargelion/0d313f9790c45fa0c5e6 to your computer and use it in GitHub Desktop.
Save Thargelion/0d313f9790c45fa0c5e6 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="hola">
<h1>hola sass</h1>
<p>párrafo</p>
</div>
// ----
// 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
body {
background: red;
}
.hola {
font-family: arial;
}
.hola h1 {
font-size: 25px;
color: white;
}
.hola p {
font-size: 16px;
color: green;
}
<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