PageRenderTime 24ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/samples/scalate-example/src/main/webapp/coffee/mysass.scss

http://github.com/scalate/scalate
Sass | 26 lines | 19 code | 3 blank | 4 comment | 0 complexity | 10a75466f4b06c7051d3cd09019a0d99 MD5 | raw file
  1. /*
  2. SCSS flavour of SASS
  3. http://sass-lang.com/
  4. */
  5. #sidebar {
  6. a { text-decoration: none; }
  7. }
  8. #footer {
  9. border: {
  10. width: 1px;
  11. color: #ccc;
  12. style: solid;
  13. }
  14. }
  15. @mixin rounded($amount) {
  16. -moz-border-radius: $amount;
  17. -webkit-border-radius: $amount;
  18. border-radius: $amount;
  19. }
  20. .box {
  21. border: 3px solid #777;
  22. @include rounded(0.5em);
  23. }