content/css/_definitions.sass
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
// Variables
!red = #A4282D
!gray = #555
// Mixins
=default_border
border = 1px "dashed" !gray
=button_img(!img)
background: url(../images/theme/buttons/#{!img}.png)
=title_font
font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Serif"
=body_font
font-family: "Georgia", "Serif"
=title
+title_font
font-variant: small-caps
margin: 1em 0 0 0
=code_font
font-family: "Consolas", "Monaco", "Monospace"
=darkbg_font
color: #CACACA
|