index.css 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409
  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. max-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. cursor: pointer;
  27. margin: 10px;
  28. padding: 25px;
  29. text-decoration: none;
  30. color: black;
  31. }
  32. .card:hover{
  33. box-shadow: 0 0 3px black;
  34. }
  35. .card h2{
  36. text-align: center;
  37. }
  38. .card img{
  39. margin-top: 10px;
  40. width: 90%;
  41. max-height: 150px;
  42. max-width: 150px;
  43. }
  44. .card p{
  45. text-align: justify;
  46. }
  47. .card > *{
  48. margin: 10px 0;
  49. }
  50. .card.backCard{
  51. justify-content: center;
  52. }
  53. .borderLine{
  54. border-bottom: 1px solid black;
  55. width: 100%;
  56. margin: 10px 0;
  57. }
  58. .center{
  59. text-align: center;
  60. }
  61. .boldy{
  62. font-weight: bold;
  63. }
  64. #mobileMenu{
  65. justify-content: space-between;
  66. height: 75px;
  67. background: #152730;
  68. width: 100%;
  69. color: white;
  70. }
  71. .displayMobileMenu{
  72. display: none;
  73. }
  74. #mobileMenu svg{
  75. height: 100%;
  76. padding: 15px;
  77. box-sizing: border-box;
  78. }
  79. #mobileMenuOptions{
  80. flex-direction: column;
  81. justify-content: space-between;
  82. align-items: center;
  83. position: fixed;
  84. padding: 75px 0 75px 0;
  85. background: #152730;
  86. height: 100vh;
  87. width: 100vw;
  88. box-sizing: border-box;
  89. z-index: 100;
  90. }
  91. .mobileChoice{
  92. display: flex;
  93. align-items: center;
  94. color: white;
  95. text-decoration: none;
  96. height: 55px;
  97. width: 85%;
  98. background: rgb(196, 198, 192);
  99. border: none;
  100. color: black;
  101. border-radius: 10px;
  102. font-size: 25px;
  103. }
  104. .mobileChoice:active{
  105. background: rgb(118, 119, 115);
  106. }
  107. .mobileChoice svg{
  108. margin: 0 35px 0 15px;
  109. }
  110. #closeMobileMenu{
  111. position: absolute;
  112. top: 0;
  113. left: 15px;
  114. height: 55px;
  115. width: 55px;
  116. height: 75px;
  117. }
  118. #menu{
  119. display: flex;
  120. flex-direction: column;
  121. align-items: center;
  122. background: #152730;
  123. width: 100px;
  124. height: 100vh;
  125. }
  126. #menu > button{
  127. display: flex;
  128. flex-direction: column;
  129. justify-content: center;
  130. align-items: center;
  131. height: 100px;
  132. width: 100px;
  133. color: #5FECE0;
  134. cursor: pointer;
  135. background: none;
  136. border: none;
  137. }
  138. #menu .active{
  139. background: rgb(196, 198, 192);
  140. cursor: default;
  141. color: #152730;
  142. }
  143. #main{
  144. flex-direction: column;
  145. align-items: center;
  146. justify-content: space-around;
  147. background: rgb(196, 198, 192);
  148. height: 100vh;
  149. width: 100%;
  150. }
  151. #about{
  152. display: flex;
  153. flex-direction: column-reverse;
  154. align-items: center;
  155. }
  156. #about h2{
  157. text-decoration: underline;
  158. margin-bottom: 15px;
  159. }
  160. .aboutCenter{
  161. max-width: 700px;
  162. }
  163. .aboutCenter h1{
  164. text-align: center;
  165. }
  166. .aboutCenter p{
  167. margin: 25px 35px;
  168. font-size: 18px;
  169. }
  170. .aboutRight{
  171. display: flex;
  172. margin-bottom: auto;
  173. }
  174. .meLink{
  175. display: flex;
  176. align-items: center;
  177. color: black;
  178. margin: 15px;
  179. }
  180. .meLink img{
  181. height: 24px;
  182. width: 24px;
  183. }
  184. #ageDiv > p, #deathDiv > p{
  185. margin-top: 5px;
  186. }
  187. #blog{
  188. display: flex;
  189. flex-direction: column;
  190. align-items: center;
  191. height: 100vh;
  192. }
  193. #gallery{
  194. display: flex;
  195. flex-direction: column;
  196. align-items: center;
  197. height: 100vh;
  198. overflow-y: auto;
  199. }
  200. #galleryContainer{
  201. display: flex;
  202. flex-wrap: wrap;
  203. justify-content: space-around;
  204. }
  205. #map{
  206. height: 50%;
  207. }
  208. .galleryPopup{
  209. text-decoration: none;
  210. color: black;
  211. }
  212. .popupImage{
  213. max-width: 100%;
  214. max-height: 100%;
  215. }
  216. .tag{
  217. display: flex;
  218. justify-content: center;
  219. align-items: center;
  220. background: #152730;
  221. color: #5FECE0;
  222. font-size: 20px;
  223. min-width: 75px;
  224. border-radius: 20px;
  225. height: 30px;
  226. border: none;
  227. padding: 0 25px;
  228. margin: 10px;
  229. cursor: pointer;
  230. }
  231. .tag:hover{
  232. box-shadow: 0 0 5px black;
  233. }
  234. .tagContainer{
  235. display: flex;
  236. justify-content: center;
  237. flex-wrap: wrap;
  238. margin-bottom: 25px;
  239. width: 80vw;
  240. }
  241. #currency{
  242. display: flex;
  243. flex-direction: column;
  244. height: 100%;
  245. overflow-y: auto;
  246. }
  247. #currencyContainer{
  248. display: flex;
  249. flex-direction: column;
  250. }
  251. .currencyImages{
  252. display: flex;
  253. }
  254. .frontImage{
  255. margin-right: 35px;
  256. }
  257. #currency img{
  258. cursor: pointer;
  259. }
  260. .currency{
  261. margin: 25px 10px;
  262. }
  263. .curComment{
  264. padding-left: 25px;
  265. }
  266. #locations{
  267. display: flex;
  268. margin: 15px;
  269. flex-wrap: wrap;
  270. }
  271. .locationBtn{
  272. margin: 10px;
  273. padding: 5px;
  274. background: none;
  275. border: 1px solid black;
  276. cursor: pointer;
  277. }
  278. .curSelected{
  279. background: #152730;
  280. color: #5FECE0;
  281. }
  282. .fullImageBackground{
  283. display: flex;
  284. align-items: center;
  285. width: 100vw;
  286. height: 100vh;
  287. position: fixed;
  288. z-index: 100;
  289. }
  290. .paper{
  291. width: 100%;
  292. }
  293. .coin{
  294. width: 100%;
  295. }
  296. @media screen and (max-width: 500px){
  297. body{
  298. flex-direction: column;
  299. height: initial;
  300. }
  301. #main{
  302. height: initial;
  303. }
  304. #menu{
  305. display: none;
  306. }
  307. .displayMobileMenu{
  308. display: flex;
  309. }
  310. .hideMobileMenu{
  311. display: none;
  312. }
  313. .aboutRight{
  314. display: none;
  315. }
  316. .aboutCenter{
  317. padding-top: 35px;
  318. }
  319. .aboutCenter p{
  320. text-align: justify;
  321. }
  322. .cardContainer{
  323. padding: 0;
  324. }
  325. .card{
  326. margin: 10px 0;
  327. }
  328. .card h1{
  329. font-size: 25px;
  330. }
  331. #blogTags{
  332. display: none;
  333. }
  334. }
  335. @media screen and (max-width: 400px){
  336. .aboutCenter p{
  337. font-size: 16px;
  338. margin: 25px 5px;
  339. }
  340. }