Add 'getTrainByUID - and format

This commit is contained in:
Fred Boniface
2023-07-13 19:40:32 +01:00
parent 6795809098
commit be7d0106d5
3 changed files with 84 additions and 41 deletions

View File

@@ -0,0 +1,15 @@
<p id="load">Loading...</p>
<style>
#load {
margin-top: 5px;
font-size: 18px;
font-weight: 600;
color: white;
animation: pulse-loading 2.5s linear infinite;
}
@keyframes pulse-loading {
50% {
color: rgb(136, 164, 255);
}
}
</style>