Files
personal-site/css/overlay.css
Arthur Lu 413ac7c7ab add research,
change around how styles are specified for each page's overlay content
2025-03-08 23:34:41 +00:00

31 lines
598 B
CSS

.overlay-container {
position: relative;
width: 100%;
}
.overlay-container .image {
display: block;
width: 100%;
height: auto;
}
.overlay-container .overlay-mask {
position: absolute;
inset: 0;
height: 100%;
width: 100%;
background-color: rgb(0 0 0 / 0%);
color: rgb(0 0 0 / 0%);
transition-property: color, background-color;
transition-duration: 0.25s, 0.25s;
transition-timing-function: ease-in-out;
}
.overlay-container:hover .overlay-mask {
background-color: rgb(0 0 0 / 70%);
color: rgb(255 255 255 / 100%);
}
.overlay-container .overlay-content {
text-decoration: none;
}