star-rating-svg.css 629 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .jq-stars {
  2. display: inline-block;
  3. }
  4. .jq-rating-label {
  5. font-size: 22px;
  6. display: inline-block;
  7. position: relative;
  8. vertical-align: top;
  9. font-family: helvetica, arial, verdana;
  10. }
  11. .jq-star {
  12. width: 100px;
  13. height: 100px;
  14. display: inline-block;
  15. cursor: pointer;
  16. }
  17. .jq-star-svg {
  18. padding-left: 3px;
  19. width: 100%;
  20. height: 100% ;
  21. }
  22. .jq-star:hover .fs-star-svg path {
  23. }
  24. .jq-star-svg path {
  25. /* stroke: #000; */
  26. stroke-linejoin: round;
  27. }
  28. /* un-used */
  29. .jq-shadow {
  30. -webkit-filter: drop-shadow( -2px -2px 2px #888 );
  31. filter: drop-shadow( -2px -2px 2px #888 );
  32. }