default.txt 441 B

12345678910111213141516171819202122232425
  1. @import "nib"
  2. // variables
  3. $green = #008000
  4. $green_dark = darken($green, 10)
  5. // mixin/function
  6. container()
  7. max-width 980px
  8. // mixin/function with parameters
  9. buttonBG($color = green)
  10. if $color == green
  11. background-color #008000
  12. else if $color == red
  13. background-color #B22222
  14. button
  15. buttonBG(red)
  16. #content, .content
  17. font Tahoma, Chunkfive, sans-serif
  18. background url('hatch.png')
  19. color #F0F0F0 !important
  20. width 100%