Iklan Billboard 970x250

Ballaide ad space

Adding Syntax Highlighting to Code Snippets in a Blogger or Website

Learn how to embed highlighted code snippets into your website or blog, as well as create your own theme.

schemanis themes syntax highlighter style

// 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