| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- *{margin:0;padding:0;}
- body{
- background: rgb(196, 198, 192);
- }
- h1{
- margin: 25px 0;
- text-align: center;
- border-bottom: 2px solid black;
- }
- #images{
- display: flex;
- flex-wrap: wrap;
- justify-content: space-around;
- width: 100%;
- }
- #images img{
- max-height: 250px;
- margin: 25px;
- cursor: pointer;
- box-shadow: 0 0 5px black;
- }
- #images img:hover{
- box-shadow: 0 0 10px black;
- }
- #fullPage{
- position: fixed;
- top: 0;
- left: 0;
- justify-content: center;
- align-items: center;
- height: 100vh;
- width: 100vw;
- background: rgba(0, 0, 0, 0.85);
- z-index: 1;
- }
- #fullPage img{
- max-height: 90%;
- max-width: 90%;
- cursor: default;
- box-shadow: none;
- }
- #fullPage svg{
- position: absolute;
- color: white;
- cursor: pointer;
- border-radius: 50%;
- padding: 5px;
- z-index: 2;
- }
- #fullPage svg:hover{
- background: white;
- color: black;
- }
- #closeImg{
- top: 25px;
- right: 25px;
- }
- #nextImg{
- right: 50px;
- }
- #previousImg{
- left: 50px;
- }
|