view assets/style.css @ 88:cb4ef5b61aeb

Livemap: Fix last-update display
author Lewin Bormann <lbo@spheniscida.de>
date Mon, 07 Dec 2020 21:21:41 +0100
parents a4be115b5463
children 1983da548b88
line wrap: on
line source

body {
    text-size: 120%;
}
.field {
    width: 15em;
}
#mapid {
    height: 95%;
    width: 95%;
    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;
}