view assets/style.css @ 86:d2ff3a9d066d

Livemap: Animate time field on update
author Lewin Bormann <lbo@spheniscida.de>
date Mon, 07 Dec 2020 11:23:30 +0100
parents b929614334be
children a4be115b5463
line wrap: on
line source

#mapid {
    height: 100%;
    margin: 5px;
}
#livemapTitle {
    color: blue;
    font-weight: bold;
    margin-right: 3em;
}
#infoFields {
    border-style: solid;
    border-color: green;
    padding: 5px;
}

@keyframes blinkonupdate {
    from {background-color: greenyellow;}
    to {background-color: white;}
}
.timeChanged {
    animation-name: blinkonupdate;
    animation-duration: 2s;
    animation-iteration-count: 1;
}