Advertisement
Guest User

Untitled

a guest
Dec 6th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. div.stars {
  2. width: 270px;
  3. display: inline-block;
  4. }
  5.  
  6. input.star { display: none; }
  7.  
  8. label.star {
  9. float: right;
  10. padding: 10px;
  11. font-size: 36px;
  12. color: #444;
  13. transition: all .2s;
  14. }
  15.  
  16. input.star:checked ~ label.star:before {
  17. content: '\f005';
  18. color: #FD4;
  19. transition: all .25s;
  20. }
  21.  
  22. input.star-5:checked ~ label.star:before {
  23. color: #FE7;
  24. //text-shadow: 0 0 20px #952;
  25. }
  26.  
  27. //input.star-1:checked ~ label.star:before { color: #F62; }
  28.  
  29. label.star:hover { transform: /*rotate(-15deg) */scale(1.3); }
  30.  
  31. label.star:before {
  32. content: '\f006';
  33. font-family: FontAwesome;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement