default.sass

posted on 2009-09-16 09:45:42+08:00 by 7895734
When editing a Sass file, hitting cmd-r will cause TextMate to walk up the directory tree until it finds the sass/ directory. It will convert each file in the sass/ dir to CSS and place the resulting .css files in the parent directory of the sass/ dir (usually css/). It will not drill down into the subdirs of sass/. Those subdirs (e.g. site/ and standard/) should contain files that are included in the main Sass files (all.sass, print.sass, etc.).
  1. p
  2. :margin 10px 0
  3.  
  4. code
  5. :padding 0 2px
  6. :background #ccc
  7.  
  8. ul, ol
  9. :margin 0 0 10px 10px
  10. :padding 0 0 0 15px
  11.  
  12. ul li
  13. :list-style disc
  14.  
  15. ol li
  16. :list-style decimal
  17.  
  18. blockquote
  19. :padding-left 15px
  20. :border-left 3px solid #ccc
  21. :color #777
  22.  
  23. pre
  24. :color #777
  25. :font-size 11px
  26. :line-height 1.4em
  27. :background-color #191919
  28. :margin 18px 0 18px 0
  29. :padding 10px
  30. :overflow auto
  31. :-moz-border-radius 5px
  32. :-webkit-border-radius 5px
  33.  

All Code Snippets

Hot Code Snippets

New Code Snippets