index.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. *{margin:0;padding:0;}
  2. body{
  3. height: 100vh;
  4. width: 100vw;
  5. display: flex;
  6. }
  7. .cardContainer{
  8. display: flex;
  9. justify-content: space-around;
  10. flex-wrap: wrap;
  11. height: 100%;
  12. width: 100%;
  13. box-sizing: border-box;
  14. padding: 25px;
  15. overflow-y: auto;
  16. }
  17. .card{
  18. position: relative;
  19. display: flex;
  20. flex-direction: column;
  21. justify-content: center;
  22. align-items: center;
  23. background: white;
  24. width: 300px;
  25. height: 300px;
  26. cursor: pointer;
  27. margin: 10px;
  28. padding: 25px;
  29. text-decoration: none;
  30. color: black;
  31. }
  32. div.card{
  33. cursor: default;
  34. }
  35. div.card:hover{
  36. box-shadow: none;
  37. }
  38. .card:hover{
  39. box-shadow: 0 0 3px black;
  40. }
  41. .card h2{
  42. text-align: justify;
  43. }
  44. .card img{
  45. margin-top: 10px;
  46. width: 90%;
  47. max-height: 150px;
  48. max-width: 150px;
  49. }
  50. .card p{
  51. text-align: justify;
  52. }
  53. .card > *{
  54. margin: 10px 0;
  55. }
  56. .soon{
  57. display: flex;
  58. justify-content: center;
  59. align-items: center;
  60. font-size: 40px;
  61. position: absolute;
  62. z-index: 1;
  63. height: 100%;
  64. width: 100%;
  65. background: rgba(0, 0, 0, 0.4);
  66. color: white;
  67. }
  68. .sidebar{
  69. display: flex;
  70. flex-direction: column;
  71. justify-content: space-around;
  72. align-items: center;
  73. background: #152730;
  74. height: 100vh;
  75. width: 25vw;
  76. color: #5FECE0;
  77. border-right: 1px solid white
  78. }
  79. .description{
  80. background: #152730;
  81. color: #5FECE0;
  82. width: 100%;
  83. padding: 25px;
  84. box-sizing: border-box;
  85. font-size: 20px;
  86. text-align: justify;
  87. }
  88. .leeLinks a{
  89. display: flex;
  90. color: #5FECE0;
  91. margin: 10px;
  92. }
  93. .leeLinks svg{
  94. margin-right: 5px;
  95. }
  96. #menu{
  97. display: flex;
  98. flex-direction: column;
  99. align-items: center;
  100. background: #152730;
  101. width: 100px;
  102. height: 100vh;
  103. }
  104. #menu > button{
  105. display: flex;
  106. flex-direction: column;
  107. justify-content: center;
  108. align-items: center;
  109. height: 100px;
  110. width: 100px;
  111. color: #5FECE0;
  112. cursor: pointer;
  113. background: none;
  114. border: none;
  115. }
  116. #menu .active{
  117. background: rgb(196, 198, 192);
  118. cursor: default;
  119. color: #152730;
  120. }
  121. #main{
  122. flex-direction: column;
  123. align-items: center;
  124. justify-content: space-around;
  125. background: rgb(196, 198, 192);
  126. height: 100vh;
  127. width: 75vw;
  128. }