index.css 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. *{margin:0;padding:0;}
  2. body{
  3. height: 100vh;
  4. width: 100%;
  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: space-between;
  22. align-items: center;
  23. text-align: center;
  24. background: white;
  25. width: 300px;
  26. height: 300px;
  27. cursor: pointer;
  28. margin: 10px;
  29. padding: 25px;
  30. text-decoration: none;
  31. color: black;
  32. }
  33. .card:hover{
  34. box-shadow: 0 0 3px black;
  35. }
  36. .card h2{
  37. text-align: center;
  38. }
  39. .card img{
  40. margin-top: 10px;
  41. width: 90%;
  42. max-height: 150px;
  43. max-width: 150px;
  44. }
  45. .card p{
  46. text-align: justify;
  47. }
  48. .card > *{
  49. margin: 10px 0;
  50. }
  51. .card.backCard{
  52. justify-content: center;
  53. }
  54. .borderLine{
  55. border-bottom: 1px solid black;
  56. width: 100%;
  57. margin: 10px 0;
  58. }
  59. .center{
  60. text-align: center;
  61. }
  62. .boldy{
  63. font-weight: bold;
  64. }
  65. #menu{
  66. display: flex;
  67. flex-direction: column;
  68. align-items: center;
  69. background: #152730;
  70. width: 100px;
  71. height: 100vh;
  72. }
  73. #menu > button{
  74. display: flex;
  75. flex-direction: column;
  76. justify-content: center;
  77. align-items: center;
  78. height: 100px;
  79. width: 100px;
  80. color: #5FECE0;
  81. cursor: pointer;
  82. background: none;
  83. border: none;
  84. }
  85. #menu .active{
  86. background: rgb(196, 198, 192);
  87. cursor: default;
  88. color: #152730;
  89. }
  90. #main{
  91. flex-direction: column;
  92. align-items: center;
  93. justify-content: space-around;
  94. background: rgb(196, 198, 192);
  95. height: 100vh;
  96. width: 100%;
  97. }
  98. #about{
  99. display: flex;
  100. flex-direction: column-reverse;
  101. align-items: center;
  102. }
  103. #about h2{
  104. text-decoration: underline;
  105. margin-bottom: 15px;
  106. }
  107. .aboutCenter{
  108. max-width: 700px;
  109. }
  110. .aboutCenter h1{
  111. text-align: center;
  112. }
  113. .aboutCenter p{
  114. margin: 25px 35px;
  115. font-size: 18px;
  116. }
  117. .aboutRight{
  118. display: flex;
  119. margin-bottom: auto;
  120. }
  121. .meLink{
  122. display: flex;
  123. align-items: center;
  124. color: black;
  125. margin: 15px;
  126. }
  127. .meLink img{
  128. height: 24px;
  129. width: 24px;
  130. }
  131. #ageDiv > p, #deathDiv > p{
  132. margin-top: 5px;
  133. }
  134. #blog{
  135. display: flex;
  136. flex-direction: column;
  137. align-items: center;
  138. height: 100vh;
  139. }
  140. #gallery{
  141. display: flex;
  142. flex-direction: column;
  143. align-items: center;
  144. height: 100vh;
  145. overflow-y: auto;
  146. }
  147. #galleryContainer{
  148. display: flex;
  149. flex-wrap: wrap;
  150. justify-content: space-around;
  151. }
  152. #map{
  153. height: 50%;
  154. }
  155. .galleryPopup{
  156. text-decoration: none;
  157. color: black;
  158. }
  159. .popupImage{
  160. max-width: 100%;
  161. max-height: 100%;
  162. }
  163. .tag{
  164. display: flex;
  165. justify-content: center;
  166. align-items: center;
  167. background: #152730;
  168. color: #5FECE0;
  169. font-size: 20px;
  170. min-width: 75px;
  171. border-radius: 20px;
  172. height: 30px;
  173. border: none;
  174. padding: 0 25px;
  175. margin: 10px;
  176. cursor: pointer;
  177. }
  178. .tag:hover{
  179. box-shadow: 0 0 5px black;
  180. }
  181. .tagContainer{
  182. display: flex;
  183. justify-content: center;
  184. flex-wrap: wrap;
  185. margin-bottom: 25px;
  186. width: 80vw;
  187. }
  188. #currency{
  189. display: flex;
  190. flex-direction: column;
  191. height: 100%;
  192. overflow-y: auto;
  193. }
  194. #currencyContainer{
  195. display: flex;
  196. flex-direction: column;
  197. }
  198. .currencyImages{
  199. display: flex;
  200. }
  201. .frontImage{
  202. margin-right: 35px;
  203. }
  204. #currency img{
  205. cursor: pointer;
  206. }
  207. .currency{
  208. margin: 25px 10px;
  209. }
  210. .curComment{
  211. padding-left: 25px;
  212. }
  213. #locations{
  214. display: flex;
  215. margin: 15px;
  216. }
  217. .locationBtn{
  218. margin: 10px;
  219. padding: 5px;
  220. background: none;
  221. border: 1px solid black;
  222. cursor: pointer;
  223. }
  224. .curSelected{
  225. background: #152730;
  226. color: #5FECE0;
  227. }
  228. .fullImageBackground{
  229. display: flex;
  230. align-items: center;
  231. width: 100vw;
  232. height: 100vh;
  233. position: fixed;
  234. z-index: 100;
  235. }
  236. .paper{
  237. width: 100%;
  238. }
  239. .coin{
  240. width: 100%;
  241. }