Guest User

Untitled

a guest
Jan 24th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. $i: 0;
  2. $width: 0;
  3. $left: 0;
  4. @while $i < 6 {
  5. $i: $i + 1;
  6. $left: $left + $width;
  7. @if ($i == 1) {
  8.  
  9. $width: 160px;
  10. } @else if ($i == 2){
  11. $width: 230px;
  12. } @else if ($i == 3){
  13. $width: 130px;
  14. } @else if ($i == 4){
  15. $width: 140px;
  16. } @else if ($i == 5){
  17. $width: 200px;
  18. }
  19. .i-#{$i} a {
  20. width: $width;
  21. background-position: -$left 0;
  22. &:hover {
  23. background-position: -$left -100px;
  24. }
  25. }
  26. }
  27. }
Add Comment
Please, Sign In to add comment