Learn how to embed highlighted code snippets into your website or blog, as well as create your own theme.
// Variables $font-stack: Helvetica, sans-serif; $primary-color: #333; @mixin border-radius($radius) { -webkit-border-radius: $radius; -moz-border-radius: $radius; -ms-border-radius: $radius; border-radius: $radius; } body { font: 100% $font-stack; color: $primary-color; } .box { @include border-radius(10px); }
Comments
Post a Comment