37 lines
No EOL
831 B
CSS
37 lines
No EOL
831 B
CSS
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
background: #563446;
|
|
color: white;
|
|
}
|
|
a {
|
|
color: #ffffff;
|
|
background-color: #562F39;
|
|
font-size: 0.9em;
|
|
text-decoration: none;
|
|
border-radius: 6px;
|
|
padding: 0.2em 0.7em;
|
|
transition: 0.2s;
|
|
}
|
|
a:hover {
|
|
color: #000000;
|
|
background-color: #ffffff;
|
|
}
|
|
input {
|
|
color: #ffffff;
|
|
background-color: #562F39;
|
|
font-size: 0.9em;
|
|
text-decoration: none;
|
|
border-radius: 6px;
|
|
padding: 0.2em 0.7em;
|
|
border: none;
|
|
}
|
|
textarea {
|
|
color: #ffffff;
|
|
background-color: #562F39;
|
|
font-size: 0.9em;
|
|
text-decoration: none;
|
|
border-radius: 6px;
|
|
padding: 0.2em 0.7em;
|
|
border: none;
|
|
}
|
|
} |