tokenizers / style.css
qikp's picture
Add status messages and download progress bar
3630083
Raw
History Blame Contribute Delete
574 Bytes
body {
font-family: sans-serif;
text-align: center;
}
#output, textarea {
border-style: solid;
border-color: black;
border-radius: 4px;
}
#output {
overflow: auto;
resize: both;
}
#status {
margin: 8px 0;
min-height: 1.2em;
}
#status.error {
color: #ff4444;
}
#progress-wrap {
margin: 8px 0;
}
#progress {
width: 60%;
}
@media (prefers-color-scheme: dark) {
body {
color: white;
background-color: black;
}
textarea, iframe {
background-color: #aaaaaa;
}
a {
color: #ADD8E6;
}
a:visited {
color: #CBC3E3;
}
}