Guest User

Untitled

a guest
Dec 17th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. $blue: #0026FF;
  2. $red: #FF0000;
  3. $yellow: #F2FF00;
  4.  
  5. $colors: (
  6. blue: $blue,
  7. red: $red,
  8. yellow: $yellow
  9. );
  10.  
  11. @each $color, $var in $colors {
  12. .text-#{$color} {
  13. color: $var;
  14. }
  15. .link-#{$color} {
  16. color: $var;
  17. &:hover, &:click {
  18. color: darken($var, 10%);
  19. }
  20. }
  21. .bg-#{$color} {
  22. background-color: $var;
  23. }
  24. }
Add Comment
Please, Sign In to add comment