Advertisement
Pinkkk

Untitled

Feb 26th, 2020
111
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. .svg-img {
  12. position: absolute;
  13. top: 50%;
  14. left: 50%;
  15. transform: translate(-50%, -50%);
  16. path {
  17. fill: white;
  18. -webkit-transition: .3s;
  19. -o-transition: .3s;
  20. transition: .3s;
  21. }
  22. }
  23. &:hover, &:active, &:focus, &.active {
  24. background: pink;
  25. .svg-img path {
  26. fill: red;
  27. }
  28. }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement