Advertisement
Pinkkk

Untitled

Feb 26th, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. .footer-icon {
  2. background-color: pink;
  3. border-radius: 50%;
  4. width: 34px;
  5. height: 34px;
  6. position: relative;
  7. -webkit-transition: .3s;
  8. -o-transition: .3s;
  9. transition: .3s;
  10. .fa {
  11. position: absolute;
  12. top: 50%;
  13. left: 50%;
  14. -webkit-transform: translate(-50%, -50%);
  15. -ms-transform: translate(-50%, -50%);
  16. transform: translate(-50%, -50%);
  17. -webkit-transition: .3s;
  18. -o-transition: .3s;
  19. transition: .3s;
  20. }
  21. &:hover, &:active, &:focus, &.active {
  22. background-color: #AD8BEF;
  23. .fa {
  24. color: white !important;
  25. }
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement