Sass mode

 
1
// Variable Definitions
2
3
$page-width:    800px
4
$sidebar-width: 200px
5
$primary-color: #eeeeee
6
7
// Global Attributes
8
9
body
10
  font:
11
    family: sans-serif
12
    size: 30em
13
    weight: bold
14
15
// Scoped Styles
16
17
#contents
18
  width: $page-width
19
  #sidebar
20
    float: right
21
    width: $sidebar-width
22
  #main
23
    width: $page-width - $sidebar-width
24
    background: $primary-color
25
    h2
26
      color: blue
27
28
#footer
29
  height: 200px
30

MIME types defined: text/x-sass.