all.scss 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. body{
  2. padding: 0 2%;
  3. }
  4. header{
  5. .contact{
  6. z-index: 9999;
  7. position: fixed;
  8. top: 20px;
  9. right: 2%;
  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. &.open{
  18. transform: scale(15);
  19. transition: transform 0.5s ease;
  20. h3{
  21. color: transparent;
  22. left: 500px;
  23. transition: visibility 0.5 ease left 1s ease;
  24. }
  25. img{
  26. animation: rotation 12s infinite linear;
  27. }
  28. & + .txt{
  29. position: fixed;
  30. top: 190px;
  31. text-align: center;
  32. line-height: 1.5rem;
  33. z-index: 9999;
  34. animation: translateright 1s ease forwards;
  35. }
  36. }
  37. &.close{
  38. transform: scale(1);
  39. transition: transform 0.5s 0.1s ease;
  40. & + .txt{
  41. position: fixed;
  42. top: 190px;
  43. text-align: center;
  44. line-height: 1.5rem;
  45. z-index: 9999;
  46. animation: translateleft 1s ease forwards;
  47. }
  48. h3{
  49. color: white;
  50. left: 20px;
  51. transition: color 0.5s 0.5s ease, left 0.5s ease;
  52. }
  53. &:hover{
  54. transition: transform 0.5s ease!important;
  55. transform: scale(0.9)!important;
  56. }
  57. }
  58. img{
  59. animation: rotation 6s infinite linear;
  60. }
  61. h3{
  62. transform: rotate(35deg);
  63. position: absolute;
  64. top: 33px;
  65. left: 20px;
  66. }
  67. & + .txt{
  68. position: fixed;
  69. right: -200px;
  70. p{
  71. }
  72. }
  73. }
  74. h2{
  75. margin-left: 10px;
  76. }
  77. }
  78. .card{
  79. width: calc(100% / 3);
  80. padding: 0 10px;
  81. line-height: 0.8!important;
  82. .card-header{
  83. margin-top: 10px;
  84. display: inline-flex;
  85. & > div{
  86. margin-right: 5px;
  87. & > a{
  88. vertical-align: baseline;
  89. }
  90. & > time{
  91. vertical-align: baseline;
  92. }
  93. }
  94. }
  95. }