Advertisement
Guest User

Untitled

a guest
Dec 6th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. .starRating:not(old){
  2. display : inline-block;
  3. width : 7.5em;
  4. height : 1.5em;
  5. overflow : hidden;
  6. vertical-align : bottom;
  7. }
  8.  
  9. .starRating:not(old) > input{
  10. margin-right : -100%;
  11. opacity : 0;
  12. }
  13.  
  14. starRating:not(old) > label{
  15. display : block;
  16. float : right;
  17. position : relative;
  18. background : url('star-off.svg');
  19. background-size : contain;
  20. }
  21.  
  22. .starRating:not(old) > label:before{
  23. content : '';
  24. display : block;
  25. width : 1.5em;
  26. height : 1.5em;
  27. background : url('star-on.svg');
  28. background-size : contain;
  29. opacity : 0;
  30. transition : opacity 0.2s linear;
  31. }
  32.  
  33. .starRating:not(old) > label:hover:before,
  34. .starRating:not(old) > label:hover ~ label:before,
  35. .starRating:not(:hover) > :checked ~ label:before{
  36. opacity : 1;
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement