56 lines
700 B
CSS
56 lines
700 B
CSS
html, body, main {
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
margin: auto;
|
|
max-width: 800px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
@media (max-width: 800px) {
|
|
body {
|
|
padding: 10px;
|
|
box-sizing: border-box;
|
|
}
|
|
}
|
|
|
|
main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
#coord, #status {
|
|
color: grey;
|
|
font-size: 10px;
|
|
height: 15px
|
|
}
|
|
|
|
#control {
|
|
margin-top: 1em;
|
|
}
|
|
|
|
#control label {
|
|
font-weight: bold;
|
|
margin-right: 1em;
|
|
}
|
|
|
|
#control select {
|
|
padding: 0.25em 0.5em;
|
|
}
|
|
|
|
footer {
|
|
margin-top: 2em;
|
|
font-size: 12px;
|
|
text-align: center;
|
|
}
|
|
|
|
.hide {
|
|
visibility: hidden;
|
|
height: 0px;
|
|
}
|