html {
--background-color: #282A36;
--color: #8BE9FD;
--mantle: #44475A;
--rosewater: #FF79C6;
--mauve: #BD93F9;
--red: #FF5555;
--green: #F1FA8C;
--teal: #50FA7B;
--blue: #8BE9FD;
}
a {
color: #282A36;
text-decoration: none;
text-transform: uppercase;
background-color: #8BE9FD;
border-radius: 5px;
padding: 5px;
font-weight: bold;
padding-left: 10px;
padding-right: 10px;
}
a:visited {
color: #282A36;
}
.error {
color: var(--red)
}
progress {
border: 2px dotted #8BE9FD;
border-radius: 15px;
background: #FF79C6;
margin-top: 5px;
}
progress {
color: #BD93F9;
}
progress::-moz-progress-bar {
background: #BD93F9;
}
progress::-webkit-progress-value {
background: #BD93F9;
}
progress::-webkit-progress-bar {
background: #FF79C6;
}
html {
background-color: var(--background-color);
color: var(--color)
}
body {
margin: 0 auto;
width: 85ch;
max-width: calc(100vw - 2rem);
font-family: monospace;
filter: drop-shadow(1px 1px #FF79C6);
}
header,
.--center {
text-align: center;
}
li {
padding-top: 10px;
}
details {
border: 2px solid #FF79C6;
padding: 0.7rem;
margin: 0.5rem 0;
border-radius: 10px;
box-shadow: 2px 2px #BD93F9;
}
ul.actions {
list-style: none;
padding-left: 0;
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
}
ul.actions li {
display: inline;
}
footer {
border-top: 2px solid;
margin-top: 1rem;
line-height: 25px;
}