view assets/style.css @ 112:1983da548b88

livemap: Mobile website sanity
author Lewin Bormann <lbo@spheniscida.de>
date Wed, 30 Dec 2020 08:29:22 +0100
parents a4be115b5463
children
line wrap: on
line source

body {
    text-size: 120%;
    padding: 0;
    margin: 3px;
}
html, body {
    height: 100vh;
    width: 100vw;
}
.field {
    width: 10em;
}
#inputfield {
    margin: 3px;
    font-family: monospace;
}
#mapid {
    height: 90vh;
    width: 100%;
    margin: 5px;
}
#livemapTitle {
    color: blue;
    font-weight: bold;
    margin-right: 1em;
}
#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;
}

@media (max-width: 675px) {
    #inputfield {
        display: block;
    }
}