mirror of
https://github.com/9001/copyparty.git
synced 2025-08-18 09:22:31 -06:00
37 lines
601 B
CSS
37 lines
601 B
CSS
:root {
|
|
--font-main: sans-serif;
|
|
--font-serif: serif;
|
|
--font-mono: 'scp';
|
|
}
|
|
html,body,tr,th,td,#files,a {
|
|
color: inherit;
|
|
background: none;
|
|
font-weight: inherit;
|
|
font-size: inherit;
|
|
padding: 0;
|
|
border: none;
|
|
}
|
|
html {
|
|
color: #ccc;
|
|
background: #333;
|
|
font-family: sans-serif;
|
|
font-family: var(--font-main), sans-serif;
|
|
text-shadow: 1px 1px 0px #000;
|
|
touch-action: manipulation;
|
|
}
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
#box {
|
|
padding: .5em 1em;
|
|
background: #2c2c2c;
|
|
}
|
|
pre {
|
|
font-family: monospace, monospace;
|
|
font-family: var(--font-mono), monospace, monospace;
|
|
}
|
|
a {
|
|
color: #fc5;
|
|
}
|