wetter.ljg.sh/style.css

46 lines
638 B
CSS

* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: "Comic Neue", "Comic Sans", "Comic Sans MS", sans-serif;
}
#map {
height: 100vh;
width: 100%;
}
#time {
margin-bottom: 1em;
}
.controls {
align-items: center;
background: #fff;
bottom: 0;
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 0.5em 1em;
position: fixed;
width: 100%;
}
.input,
.input input {
width: 100%;
}
@media only screen and (min-width: 800px) {
#time {
margin-bottom: 0;
}
.controls {
flex-direction: row;
}
}