website/src/pages/repos.css

19 lines
419 B
CSS
Raw Normal View History

2022-10-03 08:18:32 +00:00
@keyframes five-s-hide {
0% { display: block; }
80% { display: block; }
100% { display: none; }
}
@keyframes five-s-show {
0% { display: none; }
80% { display: none; }
100% { display: block; }
}
2022-10-03 08:27:46 +00:00
.swap-child *:nth-child(1) {
animation: five-s-hide 5s linear 0s 1 normal forwards;
2022-10-03 08:18:32 +00:00
}
2022-10-03 08:27:46 +00:00
.swap-child *:nth-child(2) {
2022-10-03 08:18:32 +00:00
display: none;
2022-10-03 08:27:46 +00:00
animation: five-s-show 5s linear 0s 1 normal forwards;
2022-10-03 08:18:32 +00:00
}