| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286 |
- *{margin:0;padding:0;}
- body{
- height: 100vh;
- width: 100%;
- display: flex;
- }
- .cardContainer{
- display: flex;
- justify-content: space-around;
- flex-wrap: wrap;
- height: 100%;
- width: 100%;
- box-sizing: border-box;
- padding: 25px;
- overflow-y: auto;
- }
- .card{
- position: relative;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: center;
- text-align: center;
- background: white;
- width: 300px;
- height: 300px;
- cursor: pointer;
- margin: 10px;
- padding: 25px;
- text-decoration: none;
- color: black;
- }
- .card:hover{
- box-shadow: 0 0 3px black;
- }
- .card h2{
- text-align: center;
- }
- .card img{
- margin-top: 10px;
- width: 90%;
- max-height: 150px;
- max-width: 150px;
- }
- .card p{
- text-align: justify;
- }
- .card > *{
- margin: 10px 0;
- }
- .card.backCard{
- justify-content: center;
- }
- .borderLine{
- border-bottom: 1px solid black;
- width: 100%;
- margin: 10px 0;
- }
- .center{
- text-align: center;
- }
- .boldy{
- font-weight: bold;
- }
- #menu{
- display: flex;
- flex-direction: column;
- align-items: center;
- background: #152730;
- width: 100px;
- height: 100vh;
- }
- #menu > button{
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- height: 100px;
- width: 100px;
- color: #5FECE0;
- cursor: pointer;
- background: none;
- border: none;
- }
- #menu .active{
- background: rgb(196, 198, 192);
- cursor: default;
- color: #152730;
- }
- #main{
- flex-direction: column;
- align-items: center;
- justify-content: space-around;
- background: rgb(196, 198, 192);
- height: 100vh;
- width: 100%;
- }
- #about{
- display: flex;
- flex-direction: column-reverse;
- align-items: center;
- }
- #about h2{
- text-decoration: underline;
- margin-bottom: 15px;
- }
- .aboutCenter{
- max-width: 700px;
- }
- .aboutCenter h1{
- text-align: center;
- }
- .aboutCenter p{
- margin: 25px 35px;
- font-size: 18px;
- }
- .aboutRight{
- display: flex;
- margin-bottom: auto;
- }
- .meLink{
- display: flex;
- align-items: center;
- color: black;
- margin: 15px;
- }
- .meLink img{
- height: 24px;
- width: 24px;
- }
- #ageDiv > p, #deathDiv > p{
- margin-top: 5px;
- }
- #blog{
- display: flex;
- flex-direction: column;
- align-items: center;
- height: 100vh;
- }
- #gallery{
- display: flex;
- flex-direction: column;
- align-items: center;
- height: 100vh;
- overflow-y: auto;
- }
-
- #galleryContainer{
- display: flex;
- flex-wrap: wrap;
- justify-content: space-around;
- }
- #map{
- height: 50%;
- }
- .galleryPopup{
- text-decoration: none;
- color: black;
- }
- .popupImage{
- max-width: 100%;
- max-height: 100%;
- }
- .tag{
- display: flex;
- justify-content: center;
- align-items: center;
- background: #152730;
- color: #5FECE0;
- font-size: 20px;
- min-width: 75px;
- border-radius: 20px;
- height: 30px;
- border: none;
- padding: 0 25px;
- margin: 10px;
- cursor: pointer;
- }
- .tag:hover{
- box-shadow: 0 0 5px black;
- }
- .tagContainer{
- display: flex;
- justify-content: center;
- flex-wrap: wrap;
- margin-bottom: 25px;
- width: 80vw;
- }
- #currency{
- display: flex;
- flex-direction: column;
- height: 100%;
- overflow-y: auto;
- }
- #currencyContainer{
- display: flex;
- flex-direction: column;
- }
- .currencyImages{
- display: flex;
- }
- .frontImage{
- margin-right: 35px;
- }
- #currency img{
- cursor: pointer;
- }
- .currency{
- margin: 25px 10px;
- }
- .curComment{
- padding-left: 25px;
- }
- #locations{
- display: flex;
- margin: 15px;
- }
- .locationBtn{
- margin: 10px;
- padding: 5px;
- background: none;
- border: 1px solid black;
- cursor: pointer;
- }
- .curSelected{
- background: #152730;
- color: #5FECE0;
- }
- .fullImageBackground{
- display: flex;
- align-items: center;
- width: 100vw;
- height: 100vh;
- position: fixed;
- z-index: 100;
- }
-
- .fullscreenCurrency{
- width: 100%;
- max-height: 100%;
- }
|