Advertisement
Guest User

Untitled

a guest
May 30th, 2015
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. // ----
  2. // Sass (v3.4.12)
  3. // Compass (v1.0.3)
  4. // ----
  5.  
  6. // example1
  7. $color:red;
  8. .button{
  9. $color:blue;
  10. color:$color;
  11.  
  12. &:hover{
  13. color:$color;
  14. }
  15. }
  16. .button-primary {
  17. color:$color;
  18. }
  19.  
  20. // example
  21. .module{
  22. $primary-color:blue;
  23. color:$primary-color;
  24.  
  25. .module-hd{
  26. $primary-color:lightblue;
  27. color:$primary-color;
  28. }
  29. .module-bd{
  30. color:$primary-color;
  31. }
  32. }
  33.  
  34. // example !default
  35. $alert-bg-color:lightgreen;
  36. $alert-bg-color:lightblue !default;
  37. .alert{
  38. background:$alert-bg-color;
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement