Nesting Properties

Sass can nest properties with :.
.funky {
  font: fantasy {
    weight: bold;
    size: 30em;
  }
}

.funky { font: fantasy; font-weight: bold; font-size: 30em; }