Slide 16
Slide 16 text
CSS Output
SCSS
.thingy1 {
background: #eee;
color: #444;
}
.thingy2 {
background: #eee;
color: purple;
}
.thingy3 {
background: green;
color: red;
}
.thingy4 {
background: blue;
color: #444;
}
@mixin module($text: #444,
$background: #eee) {
background: $background;
color: $text;
}
.thingy1 { @include module; }
.thingy2 { @include module(purple); }
.thingy3 {
@include module(red, green);
}
.thingy4 {
@include module($background: blue);
}