92 lines
1.4 KiB
CSS
92 lines
1.4 KiB
CSS
@font-face {
|
|
font-family: "Comic Neue";
|
|
font-weight: bold;
|
|
src: url("assets/ComicNeue-Bold.ttf");
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Comic Neue";
|
|
font-style: italic;
|
|
font-weight: bold;
|
|
src: url("assets/ComicNeue-BoldItalic.ttf");
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Comic Neue";
|
|
font-style: italic;
|
|
src: url("assets/ComicNeue-Italic.ttf");
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Comic Neue";
|
|
font-weight: 300;
|
|
src: url("assets/ComicNeue-Light.ttf");
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Comic Neue";
|
|
font-style: italic;
|
|
font-weight: 300;
|
|
src: url("assets/ComicNeue-LightItalic.ttf");
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Comic Neue";
|
|
src: url("assets/ComicNeue-Regular.ttf");
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: "Comic Neue", 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%;
|
|
}
|
|
|
|
.ol-attribution {
|
|
bottom: unset !important;
|
|
top: 0.5em;
|
|
}
|
|
|
|
.ol-attribution.ol-uncollapsible {
|
|
top: 0;
|
|
}
|
|
|
|
@media only screen and (min-width: 800px) {
|
|
#time {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.controls {
|
|
flex-direction: row;
|
|
}
|
|
}
|