website/src/pages/repos.css

32 lines
550 B
CSS
Raw Permalink Normal View History

2022-10-03 08:54:08 +00:00
@keyframes timeout-hide {
0% { }
2022-10-03 08:54:08 +00:00
99% { }
100% {
height: 0;
padding: 0;
margin: 0;
}
2022-10-03 08:18:32 +00:00
}
2022-10-03 08:54:08 +00:00
@keyframes timeout-show {
0% {
height: 0;
padding: 0;
margin: 0;
}
2022-10-03 08:54:08 +00:00
99% {
height: 0;
padding: 0;
margin: 0;
}
100% { }
2022-10-03 08:18:32 +00:00
}
.swap-child > *:nth-child(1) {
2022-10-03 08:54:08 +00:00
animation: timeout-hide 10s linear 0s 1 normal forwards;
overflow: hidden;
2022-10-03 08:18:32 +00:00
}
.swap-child > *:nth-child(2) {
2022-10-03 08:54:08 +00:00
animation: timeout-show 10s linear 0s 1 normal forwards;
overflow: hidden;
2022-10-03 08:18:32 +00:00
}