Guest User

Untitled

a guest
Oct 16th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. /*
  2. Ratings Stars
  3. (with as little code as possible)
  4. */
  5. .rating {
  6. background: black;
  7. unicode-bidi: bidi-override;
  8. direction: rtl;
  9. text-align: center;
  10. }
  11. .rating > span {
  12. display: inline-block;
  13. position: relative;
  14. width: 1.1em;
  15. }
  16. .rating > span:hover,
  17. .rating > span:hover ~ span {
  18. color: transparent;
  19. }
  20. .rating > span:hover:before,
  21. .rating > span:hover ~ span:before {
  22. content: "\2606";
  23. position: absolute;
  24. left: 0;
  25. color: gold;
  26. }
  27.  
  28.  
  29.  
  30.  
  31. body { padding: 100px; }
Add Comment
Please, Sign In to add comment