Add render data

This commit is contained in:
2025-03-30 15:12:52 +05:00
parent 71a2bec099
commit cceca6b8bf
4 changed files with 97 additions and 25 deletions

View File

@@ -10,5 +10,27 @@ body {
}
table {
width: 100%;
}
td {
padding: 5px 10px;
}
.none {
display: none;
}
#loader span {
animation: 1500ms infinite loader;
animation-delay: calc(var(--i) * 500ms);
}
@keyframes loader {
from {
opacity: 1;
}
to {
opacity: 0;
}
}