index.css 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419
  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. .galleryPopup{
  206. text-decoration: none;
  207. color: black;
  208. }
  209. .popupImage{
  210. max-width: 100%;
  211. max-height: 100%;
  212. }
  213. .tag{
  214. display: flex;
  215. justify-content: center;
  216. align-items: center;
  217. background: #152730;
  218. color: #5FECE0;
  219. font-size: 20px;
  220. min-width: 75px;
  221. border-radius: 20px;
  222. height: 30px;
  223. border: none;
  224. padding: 0 25px;
  225. margin: 10px;
  226. cursor: pointer;
  227. }
  228. .tag:hover{
  229. box-shadow: 0 0 5px black;
  230. }
  231. .tagContainer{
  232. display: flex;
  233. justify-content: center;
  234. flex-wrap: wrap;
  235. margin-bottom: 25px;
  236. width: 80vw;
  237. }
  238. #currency{
  239. display: flex;
  240. flex-direction: column;
  241. height: 100%;
  242. overflow-y: auto;
  243. }
  244. #currencyContainer{
  245. display: flex;
  246. flex-direction: column;
  247. }
  248. .currencyImages{
  249. display: flex;
  250. }
  251. .frontImage{
  252. margin-right: 35px;
  253. }
  254. #currency img{
  255. cursor: pointer;
  256. }
  257. .currency{
  258. margin: 25px 10px;
  259. }
  260. .curComment{
  261. padding-left: 25px;
  262. }
  263. #locations{
  264. display: flex;
  265. margin: 15px;
  266. flex-wrap: wrap;
  267. }
  268. .locationBtn{
  269. margin: 10px;
  270. padding: 5px;
  271. background: none;
  272. border: 1px solid black;
  273. cursor: pointer;
  274. }
  275. .curSelected{
  276. background: #152730;
  277. color: #5FECE0;
  278. }
  279. .fullImageBackground{
  280. display: flex;
  281. align-items: center;
  282. width: 100vw;
  283. height: 100vh;
  284. position: fixed;
  285. z-index: 100;
  286. }
  287. .paper{
  288. width: 100%;
  289. }
  290. .coin{
  291. width: 100%;
  292. }
  293. @media screen and (max-width: 500px){
  294. body{
  295. flex-direction: column;
  296. height: initial;
  297. }
  298. #main{
  299. height: initial;
  300. min-height: 100vh;
  301. }
  302. #menu{
  303. display: none;
  304. }
  305. .displayMobileMenu{
  306. display: flex;
  307. }
  308. .hideMobileMenu{
  309. display: none;
  310. }
  311. .aboutRight{
  312. display: none;
  313. }
  314. .aboutCenter{
  315. padding-top: 35px;
  316. }
  317. .aboutCenter p{
  318. text-align: justify;
  319. }
  320. .cardContainer{
  321. padding: 0;
  322. }
  323. .card{
  324. margin: 10px 0;
  325. }
  326. .card h1{
  327. font-size: 25px;
  328. }
  329. #blogTags, #galleryTags{
  330. display: none;
  331. }
  332. #gallery{
  333. position: fixed;
  334. top: 0;
  335. left: 0;
  336. width: 100vw;
  337. z-index: -1;
  338. }
  339. #map{
  340. height: 100% !important;
  341. width: 100% !important;
  342. }
  343. }
  344. @media screen and (max-width: 400px){
  345. .aboutCenter p{
  346. font-size: 16px;
  347. margin: 25px 5px;
  348. }
  349. }