22 lines
281 B
CSS
22 lines
281 B
CSS
body {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
img {
|
|
position: absolute;
|
|
bottom: 0%;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
opacity: 0;
|
|
}
|
|
|
|
#idle:not(.active) {
|
|
opacity: 1;
|
|
}
|
|
|
|
#active.active{
|
|
opacity: 1;
|
|
} |