Skip to content

Instantly share code, notes, and snippets.

@MIsabelZM
Created October 28, 2014 22:02
Show Gist options
  • Save MIsabelZM/1597c80a0a9892bc4b6e to your computer and use it in GitHub Desktop.
Save MIsabelZM/1597c80a0a9892bc4b6e to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.6)
// Compass (v1.0.1)
// ----
//variables
$color-fondo:orange;
$padding:10px;
//parent selectors
a{
color:yellow;
&:hover{
color:blue;
}
}
div{
background-color: $color-fondo;
}
p{
color:$color-fondo;
}
//nesting
nav{
possition: fixed;
padding:$padding;
li{
padding: $padding/2;
}
}
a {
color: yellow;
}
a:hover {
color: blue;
}
div {
background-color: orange;
}
p {
color: orange;
}
nav {
possition: fixed;
padding: 10px;
}
nav li {
padding: 5px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment