jade
Version:
Jade template engine
24 lines (18 loc) • 412 B
text/stylus
font-families = "Lucida Grande", Arial
main-width = 80%
main-color =
sidebar-width = main-width / 2
// Mixins can use conditionals
// to supply defaults
unless font-families is defined
font-families = 'WAHOO'
// Alternatively we may use ?=
font-families ?= 'WAHOO'
body
size = 12px
font size font-families, sans-serif
color main-color
width main-width
.sidebar
width sidebar-width