elftwinks.gay/css/custom.css

28 lines
553 B
CSS
Raw Normal View History

2024-12-23 02:12:41 +00:00
body {
background-color: #161618;
}
a {
color: #f5a9b8;
}
a:visited {
color: #5BCEFA;
}
/* Container to hold the images */
.image-container {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
gap: 2px;
margin: 20px;
}
/* Each image inside the container */
.image-container img {
width: 100%;
max-width: 300px; /* Max width of each image */
height: auto; /* Ensure aspect ratio is maintained */
object-fit: contain; /* Ensure images fit within the container */
}