Advertisement
Pinkkk

Untitled

Feb 26th, 2020
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. .svg-img-border {
  2. position: relative;
  3. background: #725B9F;
  4. border-radius: 50%;
  5. width: 78px;
  6. height: 78px;
  7. margin: 0 auto;
  8. -webkit-transition: .3s;
  9. -o-transition: .3s;
  10. transition: .3s;
  11. &:hover, &:active, &:focus, &.active {
  12. background: pink;
  13. .svg-img path {
  14. fill: red;
  15. }
  16. }
  17. .svg-img {
  18. position: absolute;
  19. top: 50%;
  20. left: 50%;
  21. transform: translate(-50%, -50%);
  22. path {
  23. fill: white;
  24. -webkit-transition: .3s;
  25. -o-transition: .3s;
  26. transition: .3s;
  27. }
  28. }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement