This commit is contained in:
McShelby 2022-02-17 07:47:34 +00:00
parent e51ccb0f21
commit ac53957cd9
157 changed files with 3395 additions and 3367 deletions

View file

@ -1,3 +1,4 @@
/* based on base16-snazzy
/* Background */ .chroma { color: #e2e4e5; background-color: #282a36 }
/* Other */ .chroma .x { }
/* Error */ .chroma .err { color: #ff5c57 }

View file

@ -1,3 +1,4 @@
/* based on rrt
/* Background */ .chroma { color: #f8f8f2; background-color: #000000 }
/* Other */ .chroma .x { }
/* Error */ .chroma .err { }

View file

@ -11,6 +11,9 @@ html,
body #body{
font-size: 8.9pt;
}
body {
background-color: white;
}
pre code {
font-size: 8.3pt;
}
@ -60,6 +63,11 @@ pre {
/* better contrast for colored elements */
color: black;
}
#body pre,
#body code {
background-color: white;
border-color: #ddd;
}
hr{
border-bottom: 1px solid #ddd;
@ -111,4 +119,22 @@ mark {
}
.mermaid > svg:hover {
border-color: transparent;
}
}
div.box {
border: 1px solid #ddd;
}
div.box > .box-content {
background-color: white;
}
.btn-default,
#body .tab-nav-button {
color: black !important;
}
#body .tab-nav-button.active {
background-color: white !important;
border-bottom-color: white !important;
color: black;
}
#body .tab-nav-button:not(.active) {
opacity: 1;
}