Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
48
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. unicode-bidi: bidi-override;
  7. direction: rtl;
  8. text-align: center;
  9. }
  10. .rating > span {
  11. display: inline-block;
  12. position: relative;
  13. width: 1.1em;
  14. }
  15. .rating > span:hover,
  16. .rating > span:hover ~ span {
  17. color: transparent;
  18. }
  19. .rating > span:hover:before,
  20. .rating > span:hover ~ span:before {
  21. content: "\2605";
  22. font-size: 50px;
  23. position: absolute;
  24. left: 0;
  25. color: gold;
  26. }
  27.  
  28.  
  29.  
  30.  
  31. body { padding: 100px; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement