Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. .rating
  2. display: flex
  3. margin: 0 0 1em 0
  4. padding: 0
  5. border: none
  6.  
  7. /* Caption */
  8.  
  9. .rating__caption
  10. margin-bottom: 0.5em
  11. padding: 0
  12.  
  13.  
  14. /* Group */
  15.  
  16. .rating__group
  17. position: relative
  18. width: 6em
  19. height: 1.2em
  20. background-image: url(../img/rate1.svg)
  21. background-size: 1.2em auto
  22. background-repeat: repeat-x
  23.  
  24.  
  25. .rating__group:focus-within
  26. outline: 0.2em solid #4a90e2
  27. outline-offset: 0.2em
  28.  
  29.  
  30. /* Star */
  31.  
  32. .rating__star
  33. position: absolute
  34. top: 0
  35. left: 0
  36. margin: 0
  37. height: 1.2em
  38. font-size: inherit
  39. -webkit-appearance: none
  40. -moz-appearance: none
  41. appearance: none
  42. background-size: 1.2em auto
  43. background-repeat: repeat-x
  44.  
  45.  
  46. .rating__star:focus
  47. outline: none
  48.  
  49.  
  50. .rating__star:hover,
  51. .rating__star:checked
  52. background-image: url(../img/rate.svg)
  53.  
  54.  
  55. .rating__star:hover ~ .rating__star
  56. background-image: url(../img/rate.svg1)
  57.  
  58.  
  59. /* Options */
  60.  
  61. .rating__star:nth-of-type(1)
  62. z-index: 5
  63. width: 1.2em
  64.  
  65.  
  66. .rating__star:nth-of-type(2)
  67. z-index: 4
  68. width: 2.5em
  69.  
  70.  
  71. .rating__star:nth-of-type(3)
  72. z-index: 3
  73. width: 3.7em
  74.  
  75.  
  76. .rating__star:nth-of-type(4)
  77. z-index: 2
  78. width: 4.9em
  79.  
  80.  
  81. .rating__star:nth-of-type(5)
  82. z-index: 1
  83. width: 6em
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement