SCSS
Variable
// _variables.scss
$bg: #000000;
// styles.scss
import "_variables";
...
background: $bg;
...Nesting
.box {
...
h1 {
color: ...
}
button {
color: ...
}
&:hover {
color: ...
}
}mixins
Extends
gulp
Last updated