27 lines
338 B
CSS
Raw Normal View History

2023-11-16 13:21:52 +04:00
#banner{
display: flex;
}
#banner a img.banner-show {
height: auto;
width: auto;
justify-content: center;
}
#banner a img.banner-hide {
height: 0;
width: 0;
opacity: 0;
visibility: hidden;
transition: opacity 1s, visibility 0s 1s;
display: none;
}
#banner > a{
display: block;
}