website/assets/img-style.css
2025-03-04 18:09:08 -06:00

76 lines
1.2 KiB
CSS

/* --- Image grid stuff --- */
section.img_grid {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
padding: 0 15px;
}
section.img_grid img {
height: 300px;
max-width: 100%;
flex: 1 2 auto;
object-fit: cover;
transition:
scale 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86),
filter 0.4s ease,
flex-grow 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
margin: 0;
border-radius: 0;
}
section.img_grid img:hover {
scale: 1.05;
flex-grow: 4;
filter: drop-shadow(0 0px 8px grey);
z-index: 100;
}
.pixel {
image-rendering: pixelated;
}
img.icon {
display: inline-block;
vertical-align: middle;
height: 1em;
}
.svg-diagram {
color: black;
}
figure {
max-width: 100%;
margin-bottom: 20px;
display: block;
}
figcaption {
font-size: 15pt;
font-style: italic;
margin: auto;
width: fit-content;
display: block;
}
@media(max-width: 700px) {
section.img_grid {
flex-direction: column;
}
section.img_grid img {
width: 100%;
height: auto;
}
}
@media (prefers-color-scheme: dark) {
.svg-diagram {
color: #fffde6;
filter: invert(1);
}
}