Skip to content

Instantly share code, notes, and snippets.

@Theo-denBlanken
Created April 23, 2020 05:38
Show Gist options
  • Save Theo-denBlanken/81ae3e8bf1552895b5f9fb40f6637943 to your computer and use it in GitHub Desktop.
Save Theo-denBlanken/81ae3e8bf1552895b5f9fb40f6637943 to your computer and use it in GitHub Desktop.
Een voorbeeld van nesting in sass
// Nesting met SCSS
$primair: cornflowerblue;
.navigatie {
background-color: $primair;
li {
float: left;
}
a {
display: block;
padding: 1em 2em;
color: white;
&:hover {
background-color: darken($color: $primair, $amount: 20);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment