embed web source
This commit is contained in:
parent
6bd7379df3
commit
f5ef251458
3 changed files with 44 additions and 62 deletions
58
src/public/style/index.css
Normal file
58
src/public/style/index.css
Normal file
|
@ -0,0 +1,58 @@
|
|||
: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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue