repos

blog.bythewood.me-wagtail

mirror archived upstream

Self-hostable blog for developers built on Wagtail and Django, with webpack, Bootstrap, and CodeMirror.

blogbootstrapdjangodockerhandcodedpythonself-hostedwagtailwebpack

539 B · 43 lines · SCSS Raw History
 1#prefers-color-scheme {
 2  width: 150px;
 3  background-color: #171a1d;
 4  border-color: #6b6b6b;
 5  color: white;
 6  padding-left: 40px;
 7}
 8
 9.prefers-color-scheme-icon {
10  position: absolute;
11  color: white;
12  margin: 8px;
13}
14
15main.dark {
16  background: #e7e7e7;
17  filter: invert(1);
18
19  img {
20    filter: invert(1);
21  }
22
23  .reverse-invert {
24    filter: invert(1);
25  }
26
27  .card {
28    background: none;
29  }
30
31  .list-group {
32    filter: invert(1);
33  }
34
35  .text-muted {
36    color: #3f3f3f !important;
37  }
38
39  .block-code {
40    filter: invert(1);
41  }
42}