index.css 6.1 KB

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