SCSS mode /* Some example SCSS */ @import "compass/css3"; $variable: #333; $blue: #3bbfce; $margin: 16px; .content-navigation { #nested { background-color: black; } border-color: $blue; color: darken($blue, 9%); } .border { padding: $margin / 2; margin: $margin / 2; border-color: $blue; } @mixin table-base { th { text-align: center; font-weight: bold; } td, th {padding: 2px} } table.hl { margin: 2em 0; td.ln { text-align: right; } } li { font: { family: serif; weight: bold; size: 1.2em; } } @mixin left($dist) { float: left; margin-left: $dist; } #data { @include left(10px); @include table-base; } .source { @include flow-into(target); border: 10px solid green; margin: 20px; width: 200px; } .new-container { @include flow-from(target); border: 10px solid red; margin: 20px; width: 200px; } body { margin: 0; padding: 3em 6em; font-family: tahoma, arial, sans-serif; color: #000; } @mixin yellow() { background: yellow; } .big { font-size: 14px; } .nested { @include border-radius(3px); @extend .big; p { background: whitesmoke; a { color: red; } } } #navigation a { font-weight: bold; text-decoration: none !important; } h1 { font-size: 2.5em; } h2 { font-size: 1.7em; } h1:before, h2:before { content: "::"; } code { font-family: courier, monospace; font-size: 80%; color: #418A8A; } xxxxxxxxxx 1/* Some example SCSS */23@import "compass/css3";4$variable: #333;56$blue: #3bbfce;7$margin: 16px;89.content-navigation {10 #nested {11 background-color: black;12 }13 border-color: $blue;14 color:15 darken($blue, 9%);16}1718.border {19 padding: $margin / 2;20 margin: $margin / 2;21 border-color: $blue;22}2324@mixin table-base {25 th {26 text-align: center;27 font-weight: bold;28 }29 td, th {padding: 2px}30}3132table.hl {33 margin: 2em 0;34 td.ln {35 text-align: right;36 }37}3839li {40 font: {41 family: serif;42 weight: bold;43 size: 1.2em;44 }45}4647@mixin left($dist) {48 float: left;49 margin-left: $dist;50}5152#data {53 @include left(10px);54 @include table-base;55}5657.source {58 @include flow-into(target);59 border: 10px solid green;60 margin: 20px;61 width: 200px; }6263.new-container {64 @include flow-from(target);65 border: 10px solid red;66 margin: 20px;67 width: 200px; }6869body {70 margin: 0;71 padding: 3em 6em;72 font-family: tahoma, arial, sans-serif;73 color: #000;74}7576@mixin yellow() {77 background: yellow;78}7980.big {81 font-size: 14px;82}8384.nested {85 @include border-radius(3px);86 @extend .big;87 p {88 background: whitesmoke;89 a {90 color: red;91 }92 }93}9495#navigation a {96 font-weight: bold;97 text-decoration: none !important;98}99100h1 {101 font-size: 2.5em;102}103104h2 {105 font-size: 1.7em;106}107108h1:before, h2:before {109 content: "::";110}111112code {113 font-family: courier, monospace;114 font-size: 80%;115 color: #418A8A;116}117 The SCSS mode is a sub-mode of the CSS mode (defined in css.js). Parsing/Highlighting Tests: normal, verbose.