58 lines
890 B
CSS
58 lines
890 B
CSS
:root {
|
|
--accent: #7ca82f;
|
|
}
|
|
|
|
body {
|
|
font-size: 16px;
|
|
font-family: 'Inter', sans-serif;
|
|
}
|
|
|
|
a {
|
|
color: var(--accent);
|
|
text-decoration: none;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
form {
|
|
width: fit-content;
|
|
padding: .5em;
|
|
border: 1px solid black;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
form input[type="text"] {
|
|
width: fit-content;
|
|
min-width: 16em;
|
|
}
|
|
|
|
form button {
|
|
margin-top: .5em;
|
|
padding: .2em .3em;
|
|
font-family: inherit;
|
|
font-size: inherit;
|
|
border: 1px solid black;
|
|
border-radius: 4px;
|
|
color: white;
|
|
background-color: var(--accent);
|
|
}
|
|
|
|
pre code {
|
|
padding: .5em;
|
|
border: 1px solid black;
|
|
border-radius: 4px;
|
|
font-size: .8em;
|
|
color: #e0e0e0;
|
|
background-color: #303030;
|
|
}
|
|
|
|
pre code#motd {
|
|
display: block;
|
|
width: fit-content;
|
|
min-width: 440px;
|
|
}
|
|
|
|
footer {
|
|
font-family: monospace;
|
|
}
|