|
|
|
html, body {
|
|
|
|
position: fixed;
|
|
|
|
overflow: hidden;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body, input, button {
|
|
|
|
font-family: 'Press Start 2P', cursive;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
color: #e8e6e3;
|
|
|
|
margin: 0;
|
|
|
|
padding: 8px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background-color: #212529;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: #198754;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:visited {
|
|
|
|
color: #157347;
|
|
|
|
}
|
|
|
|
|
|
|
|
label {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
input, button, select, textarea {
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: inherit;
|
|
|
|
padding: 0.4em 0;
|
|
|
|
margin: 0 0 0.5em 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border: 1px solid #495057;
|
|
|
|
border-radius: 4px;
|
|
|
|
background-color: #343a40;
|
|
|
|
color: #e8e6e3;
|
|
|
|
}
|
|
|
|
|
|
|
|
input:disabled {
|
|
|
|
color: #6c757d;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
color: #e8e6e3;
|
|
|
|
background-color: #198754;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 0.5rem 1rem;
|
|
|
|
border-radius: 4px;
|
|
|
|
transition: background-color 0.2s ease-in-out;
|
|
|
|
font-size: 1rem;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
button:disabled {
|
|
|
|
color: #aab3bb;
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
|
|
|
|
button:not(:disabled):active {
|
|
|
|
background-color: #157347;
|
|
|
|
}
|
|
|
|
|
|
|
|
button:focus {
|
|
|
|
box-shadow: 0 0 0 2px rgba(25, 135, 84, 0.25);
|
|
|
|
}
|