all.scss 823 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. body{
  2. padding: 0 2%;
  3. }
  4. header{
  5. .contact{
  6. z-index: 9999;
  7. position: fixed;
  8. top: 20px;
  9. right: 40px;
  10. transform: scale(1);
  11. transition: transform 0.5s ease;
  12. cursor: pointer;
  13. &:hover{
  14. transition: transform 0.5s ease;
  15. transform: scale(0.9);
  16. }
  17. svg{
  18. animation: rotation 6s infinite linear;
  19. width: 90.4px;
  20. height: 87.45px;
  21. }
  22. h3{
  23. transform: rotate(35deg);
  24. }
  25. p{
  26. display: none;
  27. }
  28. }
  29. h2{
  30. margin-left: 10px;
  31. }
  32. }
  33. .card{
  34. width: calc(100% / 3);
  35. padding: 0 10px;
  36. line-height: 0.8!important;
  37. .card-header{
  38. margin-top: 10px;
  39. display: inline-flex;
  40. & > div{
  41. margin-right: 5px;
  42. & > a{
  43. vertical-align: baseline;
  44. }
  45. & > time{
  46. vertical-align: baseline;
  47. }
  48. }
  49. }
  50. }