artemsemkin

Rhye Arrows CSS Adjustment

Jul 21st, 2021 (edited)
356
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.43 KB | None | 0 0
  1. /* normal state */
  2. .arrow .circle {
  3.   stroke: red;
  4. }
  5.  
  6. .arrow__pointer {
  7.   background-color: red;
  8. }
  9.  
  10. .arrow__triangle {
  11.   border-color: transparent transparent transparent red;
  12. }
  13.  
  14. /* hover state */
  15. .arrow:hover .circle {
  16.   stroke: blue !important;
  17. }
  18.  
  19. .arrow:hover .arrow__pointer {
  20.  background-color: blue !important;
  21. }
  22.  
  23. .arrow:hover .arrow__triangle {
  24.  border-color: transparent transparent transparent blue !important;
  25. }
Add Comment
Please, Sign In to add comment