.markdown-body { a { color: blue; &:hover { color: red; } } } to properties text: { align: center; // like text-align: center transform: uppercase; // like text-transform: uppercase } @mixin heading-font { font-family: sans-serif; font-weight: bold; } h1 { @include heading-font; } with parameters @mixin font-size($n) { font-size: $n * 1.2em; } body { @include font-size(2); } with default values @m