2020-01-05 23:09:53 +00:00
|
|
|
/* Dark theme */
|
|
|
|
|
2022-08-17 22:16:42 +00:00
|
|
|
html {
|
2020-01-05 23:09:53 +00:00
|
|
|
filter: invert(90%);
|
2022-08-17 22:16:42 +00:00
|
|
|
background-color: rgba(10, 10, 10, 0.9);
|
2020-01-05 23:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
img:not(.icon), video, div.video-container {
|
|
|
|
filter: invert(100%);
|
|
|
|
}
|
|
|
|
|
|
|
|
img:not(.icon) {
|
2022-10-05 22:43:00 +00:00
|
|
|
opacity: .90;
|
2020-01-05 23:09:53 +00:00
|
|
|
transition: opacity .5s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
img:hover:not(.icon) {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:not(.card), a:hover:not(.card) {
|
|
|
|
filter: invert(100%);
|
|
|
|
}
|
|
|
|
|
|
|
|
a:not(.card) img:not(.icon) {
|
|
|
|
filter: none;
|
|
|
|
}
|
|
|
|
|
2020-01-05 23:57:45 +00:00
|
|
|
.card {
|
2021-08-01 03:46:00 +00:00
|
|
|
box-shadow: 0 1px 2px #fff !important;
|
2020-01-05 23:57:45 +00:00
|
|
|
}
|
|
|
|
|
2020-01-05 23:09:53 +00:00
|
|
|
.post pre {
|
2021-08-01 03:46:00 +00:00
|
|
|
background-color: #fff !important;
|
2020-01-05 23:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.post a code {
|
2021-08-01 03:46:00 +00:00
|
|
|
background-color: #222 !important;
|
|
|
|
border: 1px solid #333 !important;
|
2020-01-05 23:09:53 +00:00
|
|
|
}
|