2021-03-25 23:16:41 +01:00
|
|
|
html, body {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
color: #333;
|
|
|
|
margin: 0;
|
|
|
|
padding: 8px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: rgb(0,100,200);
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:visited {
|
|
|
|
color: rgb(0,80,160);
|
|
|
|
}
|
|
|
|
|
|
|
|
input, button, select, textarea {
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: inherit;
|
|
|
|
-webkit-padding: 0.4em 0;
|
|
|
|
padding: 0.4em;
|
|
|
|
margin: 0 0 0.5em 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
border-radius: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
input:disabled {
|
|
|
|
color: #ccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
color: #333;
|
|
|
|
background-color: #f4f4f4;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
button:disabled {
|
|
|
|
color: #999;
|
|
|
|
}
|
|
|
|
|
|
|
|
button:not(:disabled):active {
|
|
|
|
background-color: #ddd;
|
|
|
|
}
|
|
|
|
|
|
|
|
button:focus {
|
|
|
|
border-color: #666;
|
|
|
|
}
|
2021-03-27 17:02:33 +01:00
|
|
|
|
|
|
|
/* custom part */
|
|
|
|
|
|
|
|
form {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: auto 1fr;
|
|
|
|
grid-gap: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sandpoints {
|
|
|
|
width: 80%;
|
|
|
|
margin-left: 1rem;
|
|
|
|
margin-top: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
label {
|
|
|
|
grid-column: 1/2;
|
|
|
|
text-transform: capitalize;
|
|
|
|
}
|
|
|
|
|
2021-04-14 02:14:39 +02:00
|
|
|
input, button, textarea, .selecttier {
|
2021-03-27 17:02:33 +01:00
|
|
|
grid-column: 2/3;
|
|
|
|
}
|
|
|
|
|
|
|
|
textarea {
|
|
|
|
height: 10rem;
|
|
|
|
}
|
2021-04-11 16:12:52 +02:00
|
|
|
|
|
|
|
.hasinput {
|
|
|
|
line-height: 0.2rem;
|
|
|
|
border: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
margin: 0px;
|
|
|
|
width: 50%;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|