all.scss 493 B

1234567891011121314151617181920212223242526272829303132
  1. body{
  2. padding: 0 2%;
  3. }
  4. header{
  5. .contact{
  6. position: fixed;
  7. top: 50px;
  8. right: 50px;
  9. transform: scale(1);
  10. transition: transform 0.5s ease;
  11. cursor: pointer;
  12. &:hover{
  13. transition: transform 0.5s ease;
  14. transform: scale(0.9);
  15. }
  16. svg{
  17. animation: rotation 6s infinite linear;
  18. width: 90.4px;
  19. height: 87.45px;
  20. }
  21. h3{
  22. transform: rotate(35deg);
  23. }
  24. p{
  25. display: none;
  26. }
  27. }
  28. h2{
  29. margin-left: 10px;
  30. }
  31. }