Files
CustomLibs/JS/JustifedGallery/assets/css/style.css
2025-11-10 16:31:08 +01:00

29 lines
359 B
CSS

* {
box-sizing: border-box;
}
body {
width: 100%;
height: 100%;
margin: 0;
padding: 30px;
background-color: #fcfcfc;
}
h1 {
text-align: center;
}
.gallery {
margin-top: 100px;
width: 100%;
display: flex;
flex-wrap: wrap;
}
.gallery a {
overflow: hidden;
display: block;
margin-bottom: 10px;
width: fit-content;
}
.gallery img {
width: 100%;
}