Sass mode // Variable Definitions $page-width: 800px $sidebar-width: 200px $primary-color: #eeeeee // Global Attributes body font: family: sans-serif size: 30em weight: bold // Scoped Styles #contents width: $page-width #sidebar float: right width: $sidebar-width #main width: $page-width - $sidebar-width background: $primary-color h2 color: blue #footer height: 200px xxxxxxxxxx 1// Variable Definitions23$page-width: 800px4$sidebar-width: 200px5$primary-color: #eeeeee67// Global Attributes89body10 font:11 family: sans-serif12 size: 30em13 weight: bold1415// Scoped Styles1617#contents18 width: $page-width19 #sidebar20 float: right21 width: $sidebar-width22 #main23 width: $page-width - $sidebar-width24 background: $primary-color25 h226 color: blue2728#footer29 height: 200px30 MIME types defined: text/x-sass.