add dark mode
parent
2e021cc13c
commit
b9cfae7f53
116
static/style.css
116
static/style.css
|
@ -6,7 +6,14 @@
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: 'Open Sans', sans-serif;
|
font-family: 'Open Sans', sans-serif;
|
||||||
|
color: var(--text-color);
|
||||||
|
background: var(--body-bg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: var(--link-color);
|
||||||
|
}
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6 {
|
h1, h2, h3, h4, h5, h6 {
|
||||||
font-family: 'Merriweather', serif;
|
font-family: 'Merriweather', serif;
|
||||||
}
|
}
|
||||||
|
@ -15,11 +22,68 @@ body { line-height: 1.5; }
|
||||||
nav { line-height: normal; }
|
nav { line-height: normal; }
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
|
color-scheme: light;
|
||||||
--header-height: 3em;
|
--header-height: 3em;
|
||||||
|
--fragment-offset: calc(var(--header-height) + 1em);
|
||||||
|
--content-width: 55vw;
|
||||||
|
|
||||||
--header-bg: #f8f8f8;
|
--header-bg: #f8f8f8;
|
||||||
|
--body-bg: white;
|
||||||
|
--code-bg: #f3f3f3;
|
||||||
|
--text-color: black;
|
||||||
|
--link-color: hsl(210, 100%, 30%);
|
||||||
|
|
||||||
|
--implicit-arg-text-color: var(--text-color);
|
||||||
|
|
||||||
|
--def-color: #92dce5;
|
||||||
|
--def-color-hsl-angle: 187;
|
||||||
|
--theorem-color: #8fe388;
|
||||||
|
--theorem-color-hsl-angle: 115;
|
||||||
|
--axiom-and-constant-color: #f44708;
|
||||||
|
--axiom-and-constant-color-hsl-angle: 16;
|
||||||
|
--structure-and-inductive-color: #f0a202;
|
||||||
|
--structure-and-inductive-color-hsl-angle: 40;
|
||||||
|
--starting-percentage: 100;
|
||||||
|
|
||||||
|
--hamburger-bg-color: #eee;
|
||||||
|
--hamburger-active-color: white;
|
||||||
|
--hamburger-border-color: #ccc;
|
||||||
|
|
||||||
|
--tags-border-color: #555;
|
||||||
|
|
||||||
--fragment-offset: calc(var(--header-height) + 1em);
|
--fragment-offset: calc(var(--header-height) + 1em);
|
||||||
--content-width: 55vw;
|
--content-width: 55vw;
|
||||||
}
|
}
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
:root {
|
||||||
|
color-scheme: dark;
|
||||||
|
|
||||||
|
--header-bg: #111010;
|
||||||
|
--body-bg: #171717;
|
||||||
|
--code-bg: #363333;
|
||||||
|
--text-color: #eee;
|
||||||
|
--link-color: #58a6ff;
|
||||||
|
|
||||||
|
--implicit-arg-text-color: var(--text-color);
|
||||||
|
|
||||||
|
--def-color: #1F497F;
|
||||||
|
--def-color-hsl-angle: 214;
|
||||||
|
--theorem-color: #134E2D;
|
||||||
|
--theorem-color-hsl-angle: 146;
|
||||||
|
--axiom-and-constant-color: #6B1B1A;
|
||||||
|
--axiom-and-constant-color-hsl-angle: 1;
|
||||||
|
--structure-and-inductive-color: #73461C;
|
||||||
|
--structure-and-inductive-color-hsl-angle: 29;
|
||||||
|
--starting-percentage: 30;
|
||||||
|
|
||||||
|
--hamburger-bg-color: #2d2c2c;
|
||||||
|
--hamburger-active-color: black;
|
||||||
|
--hamburger-border-color: #717171;
|
||||||
|
|
||||||
|
--tags-border-color: #AAA;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@supports (width: min(10px, 5vw)) {
|
@supports (width: min(10px, 5vw)) {
|
||||||
:root {
|
:root {
|
||||||
--content-width: clamp(20em, 55vw, 60em);
|
--content-width: clamp(20em, 55vw, 60em);
|
||||||
|
@ -94,13 +158,13 @@ header {
|
||||||
label[for="nav_toggle"] {
|
label[for="nav_toggle"] {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-right: 1em;
|
margin-right: 1em;
|
||||||
border: 1px solid #ccc;
|
border: 1px solid var(--hamburger-border-color);
|
||||||
padding: 0.5ex 1ex;
|
padding: 0.5ex 1ex;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
background: #eee;
|
background: var(--hamburger-bg-color);
|
||||||
}
|
}
|
||||||
#nav_toggle:checked ~ * label[for="nav_toggle"] {
|
#nav_toggle:checked ~ * label[for="nav_toggle"] {
|
||||||
background: white;
|
background: var(--hamburger-active-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
body header h1 {
|
body header h1 {
|
||||||
|
@ -199,8 +263,8 @@ header header_filename {
|
||||||
}
|
}
|
||||||
|
|
||||||
#autocomplete_results .selected .result_link a {
|
#autocomplete_results .selected .result_link a {
|
||||||
background: white;
|
background: var(--body-bg);
|
||||||
border-color: #f0a202;
|
border-color: var(--structure-and-inductive-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -413,23 +477,23 @@ main h2, main h3, main h4, main h5, main h6 {
|
||||||
}
|
}
|
||||||
|
|
||||||
.def, .instance {
|
.def, .instance {
|
||||||
border-left: 10px solid #92dce5;
|
border-left: 10px solid var(--text-color);
|
||||||
border-top: 2px solid #92dce5;
|
border-top: 2px solid var(--text-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.theorem {
|
.theorem {
|
||||||
border-left: 10px solid #8fe388;
|
border-left: 10px solid var(--theorem-color);
|
||||||
border-top: 2px solid #8fe388;
|
border-top: 2px solid var(--theorem-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.axiom, .opaque {
|
.axiom, .opaque {
|
||||||
border-left: 10px solid #f44708;
|
border-left: 10px solid var(--axiom-and-constant-color);
|
||||||
border-top: 2px solid #f44708;
|
border-top: 2px solid var(--axiom-and-constant-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.structure, .inductive, .class {
|
.structure, .inductive, .class {
|
||||||
border-left: 10px solid #f0a202;
|
border-left: 10px solid var(--structure-and-inductive-color);
|
||||||
border-top: 2px solid #f0a202;
|
border-top: 2px solid var(--structure-and-inductive-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.fn {
|
.fn {
|
||||||
|
@ -454,23 +518,23 @@ main h2, main h3, main h4, main h5, main h6 {
|
||||||
}
|
}
|
||||||
|
|
||||||
.def .fn:hover, .instance .fn:hover {
|
.def .fn:hover, .instance .fn:hover {
|
||||||
background-color: hsla(187, 61%, calc(100% - 5%*var(--fn)));
|
background-color: hsla(var(--def-color-hsl-angle), 61%, calc(var(--starting-percentage) - 5%*var(--fn)));
|
||||||
box-shadow: 0 0 0 1px hsla(187, 61%, calc(100% - 5%*(var(--fn) + 1)));
|
box-shadow: 0 0 0 1px hsla(var(--def-color-hsl-angle), 61%, calc(var(--starting-percentage) - 5%*(var(--fn) + 1)));
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
.theorem .fn:hover {
|
.theorem .fn:hover {
|
||||||
background-color: hsla(115, 62%, calc(100% - 5%*var(--fn)));
|
background-color: hsla(var(--theorem-color-hsl-angle), 62%, calc(var(--starting-percentage) - 5%*var(--fn)));
|
||||||
box-shadow: 0 0 0 1px hsla(115, 62%, calc(100% - 5%*(var(--fn) + 1)));
|
box-shadow: 0 0 0 1px hsla(var(--theorem-color-hsl-angle), 62%, calc(var(--starting-percentage) - 5%*(var(--fn) + 1)));
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
.axiom .fn:hover, .opaque .fn:hover {
|
.axiom .fn:hover, .opaque .fn:hover {
|
||||||
background-color: hsla(16, 94%, calc(100% - 5%*var(--fn)));
|
background-color: hsla(var(--axiom-and-constant-color-hsl-angle), 94%, calc(var(--starting-percentage) - 5%*var(--fn)));
|
||||||
box-shadow: 0 0 0 1px hsla(16, 94%, calc(100% - 5%*(var(--fn) + 1)));
|
box-shadow: 0 0 0 1px hsla(var(--axiom-and-constant-color-hsl-angle), 94%, calc(var(--starting-percentage) - 5%*(var(--fn) + 1)));
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
.structure .fn:hover, .inductive .fn:hover, .class .fn:hover {
|
.structure .fn:hover, .inductive .fn:hover, .class .fn:hover {
|
||||||
background-color: hsla(40, 98%, calc(100% - 5%*var(--fn)));
|
background-color: hsla(var(--structure-and-inductive-color-hsl-angle), 98%, calc(var(--starting-percentage) - 5%*var(--fn)));
|
||||||
box-shadow: 0 0 0 1px hsla(40, 98%, calc(100% - 5%*(var(--fn) + 1)));
|
box-shadow: 0 0 0 1px hsla(var(--structure-and-inductive-color-hsl-angle), 98%, calc(var(--starting-percentage) - 5%*(var(--fn) + 1)));
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -479,7 +543,7 @@ main h2, main h3, main h4, main h5, main h6 {
|
||||||
}
|
}
|
||||||
|
|
||||||
.implicits, .impl_arg {
|
.implicits, .impl_arg {
|
||||||
color: black;
|
color: var(--text-color);
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -515,7 +579,7 @@ pre {
|
||||||
white-space: break-spaces;
|
white-space: break-spaces;
|
||||||
}
|
}
|
||||||
|
|
||||||
code, pre { background: #f3f3f3; }
|
code, pre { background: var(--code-bg); }
|
||||||
code, pre { border-radius: 5px; }
|
code, pre { border-radius: 5px; }
|
||||||
code { padding: 1px 3px; }
|
code { padding: 1px 3px; }
|
||||||
pre { padding: 1ex; }
|
pre { padding: 1ex; }
|
||||||
|
@ -574,7 +638,7 @@ pre code { padding: 0 0; }
|
||||||
|
|
||||||
/** Don't show underline on types, to prevent the ≤ vs < confusion. **/
|
/** Don't show underline on types, to prevent the ≤ vs < confusion. **/
|
||||||
a:link, a:visited, a:active {
|
a:link, a:visited, a:active {
|
||||||
color:hsl(210, 100%, 30%);
|
color:var(--link-color);
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -610,7 +674,7 @@ a:hover {
|
||||||
}
|
}
|
||||||
|
|
||||||
.docfile h2 a {
|
.docfile h2 a {
|
||||||
color: black;
|
color: var(--text-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tags {
|
.tags {
|
||||||
|
@ -623,7 +687,7 @@ a:hover {
|
||||||
}
|
}
|
||||||
|
|
||||||
.tags li {
|
.tags li {
|
||||||
border: 1px solid #555;
|
border: 1px solid var(--tags-border-color);
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
padding: 1px 3px;
|
padding: 1px 3px;
|
||||||
|
|
Loading…
Reference in New Issue