SCSS mode

  font-family: tahoma, arial, sans-serif;
 
1
/* Some example SCSS */
2
3
@import "compass/css3";
4
$variable: #333;
5
6
$blue: #3bbfce;
7
$margin: 16px;
8
9
.content-navigation {
10
  #nested {
11
    background-color: black;
12
  }
13
  border-color: $blue;
14
  color:
15
    darken($blue, 9%);
16
}
17
18
.border {
19
  padding: $margin / 2;
20
  margin: $margin / 2;
21
  border-color: $blue;
22
}
23
24
@mixin table-base {
25
  th {
26
    text-align: center;
27
    font-weight: bold;
28
  }
29
  td, th {padding: 2px}
30
}
31
32
table.hl {

The SCSS mode is a sub-mode of the CSS mode (defined in css.js.

Parsing/Highlighting Tests: normal, verbose.