37 lines
399 B
CSS
37 lines
399 B
CSS
body {
|
|
margin: 5px;
|
|
text-align: center;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.25rem;
|
|
margin: 7px 0;
|
|
}
|
|
|
|
p {
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
p:first-of-type {
|
|
font-weight: bold;
|
|
}
|
|
|
|
select#projectionChoice {
|
|
max-width: 50vw;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
}
|
|
|
|
label {
|
|
cursor: pointer;
|
|
}
|
|
|
|
input#axialTilt {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
canvas {
|
|
max-width: calc(50vw - 20px);
|
|
}
|