her.esy.fun/src/css/minimalist.css

755 lines
17 KiB
CSS
Raw Normal View History

2019-07-09 12:03:32 +00:00
/* CSS to be used for HTML Org-mode export
Author: Yann Esposito
*/
2019-07-25 22:37:45 +00:00
2019-08-25 22:23:42 +00:00
:root {
--font-size: 12px;
--line-height: 14px;
2019-08-25 22:23:42 +00:00
}
2019-07-25 22:37:45 +00:00
/* Fonts */
2019-07-08 21:16:48 +00:00
body {
2019-07-25 22:37:45 +00:00
font-family: Menlo, Monaco, monospace;
2019-08-25 22:23:42 +00:00
font-size: var(--font-size);
line-height: var(--line-height);
2019-07-25 22:37:45 +00:00
}
code {
font-family: Menlo, Monaco, monospace;
}
pre, pre code {
font-family: Menlo, Monaco, monospace;
}
.todo, .done {
font-family: Menlo, Monaco, monospace;
}
/* Layout */
body {
2019-07-13 21:30:59 +00:00
margin: 0;
padding: 0;
border: 0;
2019-07-08 21:16:48 +00:00
hyphens: auto;
-webkit-hyphens: auto;
-moz-hyphens:auto;
-ms-hyphens:auto;
}
2019-07-20 19:58:09 +00:00
h1, h2, h3, h4, h5, h6, pre, code, blockquote, ol, ul, ol ol, ul ul, ul ol, ol
ul, li, p, section, header, footer {
2019-07-04 06:38:15 +00:00
float: none;
margin: 0;
padding: 0;
}
2019-07-20 19:58:09 +00:00
h1, h2, h3, h4, h5, h6, pre, code, blockquote, p, ul, ol, section, header,
2019-07-28 16:44:25 +00:00
figure {
2019-08-25 22:23:42 +00:00
margin-top: 1em;
margin-bottom: 1em;
2019-07-04 06:38:15 +00:00
}
2019-07-20 19:58:09 +00:00
figure {
2019-08-25 22:23:42 +00:00
margin: 1em 0px;
2019-07-20 19:58:09 +00:00
}
2019-08-20 13:35:54 +00:00
figure > img {
margin: 0px;
}
2019-08-16 15:21:40 +00:00
li {
position: relative;
display: block;
2019-08-25 22:23:42 +00:00
padding-left: 1.5em;
2019-08-16 15:21:40 +00:00
}
ul > li:before {
content: " ";
opacity: 0.5;
float: left;
position: relative;
2019-08-25 22:23:42 +00:00
left: -1.5em;
text-align: right;
2019-08-16 15:21:40 +00:00
width: 0;
}
ol {
counter-reset: ol;
}
ol > li:before {
content: counter(ol) ". ";
counter-increment: ol;
float: left;
text-align: right;
2019-08-16 15:21:40 +00:00
position: relative;
2019-08-25 22:23:42 +00:00
left: -1.5em;
2019-08-16 15:21:40 +00:00
width: 0;
}
ol > li:nth-child(n+10) {
padding-left:28px;
}
ol > li:nth-child(n+10):before {
left: -28px;
}
2019-08-16 15:21:40 +00:00
img {
max-width: 100%;
max-height: 800px;
2019-08-25 22:23:42 +00:00
margin: 1em auto;
2019-08-16 15:21:40 +00:00
}
p > img, li > img {
max-height: 1em;
margin: 0;
vertical-align: middle;
}
table {
width: 100%;
2019-08-25 22:23:42 +00:00
margin: 1em 0;
2019-08-16 15:21:40 +00:00
border-collapse: collapse;
border: solid 1px;
display: block;
overflow: scroll;
}
td, th {
2019-08-25 22:23:42 +00:00
height: 1em;
2019-08-16 15:21:40 +00:00
padding: 0 10px;
text-align: left;
vertical-align: middle;
border-right: solid 1px;
border-left: solid 1px;
}
sup {
vertical-align: top;
position: relative;
top: -.25em;
}
sup > a {
text-decoration: none;
padding: 1px 2px;
font-weight: bold;
background: var(--reveal-background);
}
2019-07-20 19:58:09 +00:00
2019-08-16 15:21:40 +00:00
/* Markdown tricks */
2019-07-20 19:58:09 +00:00
h1 {
font-size: 1em;
}
h2 {
font-size: 1em;
}
h3 {
font-size: 1em;
}
h4 {
font-size: 1em;
}
h5 {
font-size: 1em;
}
h6 {
font-size: 1em;
}
h1::before {
content: "# ";
}
h2::before {
content: "## ";
}
h3::before {
content: "### ";
}
h4::before {
content: "#### ";
}
h5::before {
content: "##### ";
}
h6::before {
content: "###### ";
}
2019-07-04 06:38:15 +00:00
hr {
position: relative;
2019-09-16 09:42:49 +00:00
height: 1px;
2019-07-04 06:38:15 +00:00
line-height: 0;
overflow: hidden;
border: 0;
}
hr:after {
content: "----------------------------------------------------------------------------------------------------";
position: absolute;
top: 0;
left: 0;
width: 100%;
2019-09-16 09:42:49 +00:00
font-weight: bold;
2019-07-04 06:38:15 +00:00
word-wrap: break-word;
}
2019-07-08 21:16:48 +00:00
pre { max-width: 100%; overflow: scroll; }
2019-07-05 21:29:02 +00:00
pre::after,pre::before {
content: "~~~~~~~~~";
2019-07-25 22:37:45 +00:00
display: block; }
pre::before {
content: "~~~~~~~~~ " attr(class);
}
2019-07-20 19:58:09 +00:00
pre code {
background: none;
}
2019-07-04 06:38:15 +00:00
blockquote {
2019-07-08 21:16:48 +00:00
margin-left: 0;
2019-07-04 06:38:15 +00:00
position: relative;
padding-left: 17px;
padding-left: 2ch;
overflow: hidden;
}
2019-08-12 09:42:20 +00:00
.notes *:first-child,
2019-07-20 19:58:09 +00:00
blockquote *:first-child {
margin-top: 0;
}
2019-08-12 09:42:20 +00:00
.notes *:last-child,
2019-07-20 19:58:09 +00:00
blockquote *:last-child {
margin-bottom: 0;
}
2019-07-04 06:38:15 +00:00
blockquote:after {
content: ">\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>";
white-space: pre;
position: absolute;
top: 0;
left: 0;
}
2019-07-13 21:30:59 +00:00
navigation {
font-weight: bold;
display: block;
2019-07-20 19:58:09 +00:00
margin: 10px 0;
2019-07-13 21:30:59 +00:00
}
navigation > a {
margin-right: 10px;
}
2019-07-28 16:44:25 +00:00
/* org mode ids and classes */
.figure {
2019-08-25 22:23:42 +00:00
margin-top: 1em;
2019-08-14 12:54:14 +00:00
margin-bottom: 1em;
2019-07-28 16:44:25 +00:00
}
#content,.content {
max-width: 46em;
2019-08-14 12:54:14 +00:00
margin: 0 1em;
2019-08-13 22:20:14 +00:00
padding: 1px;
2019-07-28 16:44:25 +00:00
}
2019-09-16 09:42:49 +00:00
#content:first-child {
2019-07-28 16:44:25 +00:00
margin-top: 0;
2019-07-13 21:30:59 +00:00
}
#postamble {
margin-top: 1em;
}
2019-07-20 19:58:09 +00:00
.timestamp-wrapper {
font-size: 12px;
}
.todo, .done {
font-size: 12px;
font-weight: bold;
padding: 1px 1ex;
}
2019-07-28 16:44:25 +00:00
.article-date {
2019-09-16 09:42:49 +00:00
font-size: 0.8em;
2019-07-28 16:44:25 +00:00
font-style: italic;
float: right;
}
.footpara {
display: inline;
}
.footdef > sup {
vertical-align: middle;
}
.footdef > sup::after {
content: ": ";
}
2019-08-12 09:42:20 +00:00
.notes {
padding: 5px 10px;
}
.notes::before {
content: "☞";
float: left;
display: inline-block;
2019-08-16 15:29:38 +00:00
width: 1.5em;
2019-08-12 09:42:20 +00:00
}
2019-08-16 15:21:40 +00:00
.underline {
text-decoration: underline;
}
2019-07-11 22:26:33 +00:00
2019-07-20 19:58:09 +00:00
/* colors theme */
2019-07-19 23:12:41 +00:00
:root {
2019-07-20 19:58:09 +00:00
color-scheme: light dark; /* support color scheme */
2019-07-19 23:12:41 +00:00
--base03: #002b36;
--base02: #073642;
--base01: #586e75;
--base00: #657b83;
--base0: #839496;
--base1: #93a1a1;
--base2: #eee8d5;
--base3: #fdf6e3;
--yellow: #b58900;
--orange: #cb4b16;
--red: #dc322f;
--magenta: #d33682;
--violet: #6c71c4;
--blue: #268bd2;
--cyan: #2aa198;
--green: #859900;
--transparent: rgba(255,255,255,0);
2019-07-19 23:39:20 +00:00
2019-07-28 16:44:25 +00:00
/* --main-background: #00151b; /* 0.5 darker than #002b36; */
--main-background: var(--base03); /* 0.5 darker than #002b36; */
2019-09-19 21:36:20 +00:00
--main-foreground: var(--base0);
--second-foreground: var(--base01);
--reveal-foreground: var(--base1);
2019-08-12 09:42:20 +00:00
--reveal-background: var(--base02);
2019-07-25 22:37:45 +00:00
--soft-foreground: var(--base01);
2019-07-19 23:39:20 +00:00
--border-color: var(--base02);
2019-07-19 23:12:41 +00:00
--todo-txt: #000;
--color-h1: var(--cyan);
--color-h2: var(--green);
--color-h3: var(--yellow);
--color-h4: var(--orange);
--color-h5: var(--red);
--color-h6: var(--magenta);
--color-link: var(--magenta);
2019-07-19 23:12:41 +00:00
}
2019-07-11 22:26:33 +00:00
2019-07-20 19:58:09 +00:00
/* org colors */
2019-07-19 23:12:41 +00:00
@media (prefers-color-scheme: light) {
:root {
2019-07-20 19:58:09 +00:00
--main-background: #fefaf0; /* 0.5 lighter than #fdf6e3 */
2019-09-19 21:36:20 +00:00
--main-foreground: var(--base00);
--second-foreground: var(--base1);
--reveal-foreground: var(--base01);
2019-08-12 09:42:20 +00:00
--reveal-background: var(--base2);
2019-07-25 22:37:45 +00:00
--soft-foreground: var(--base1);
2019-07-19 23:12:41 +00:00
--border-color: var(--base2);
--todo-txt: #FFF;
}
}
2019-08-13 07:35:42 +00:00
#labels {
width: 100%;
2019-08-13 22:20:14 +00:00
text-align: right;
2019-08-13 07:35:42 +00:00
}
#labels label {
text-decoration: underline;
cursor: pointer;
2019-08-13 22:20:14 +00:00
font-style: italic;
2019-08-13 07:35:42 +00:00
}
2019-08-14 12:54:14 +00:00
2019-08-24 22:32:42 +00:00
/* Light theme selected */
input#light:checked ~ .main ,
2019-08-24 22:32:42 +00:00
input#light:target ~ .main {
2019-08-13 07:35:42 +00:00
--main-background: #fefaf0; /* 0.5 lighter than #fdf6e3 */
--main-foreground: var(--base01);
--second-foreground: var(--base00);
2019-09-19 21:36:20 +00:00
--reveal-foreground: var(--base01);
2019-08-13 07:35:42 +00:00
--reveal-background: var(--base2);
--soft-foreground: var(--base1);
--border-color: var(--base2);
--todo-txt: #FFF;
}
input#light:checked ~ #labels ,
2019-08-24 22:32:42 +00:00
input#light:target ~ #labels {
2019-08-14 12:54:14 +00:00
background: #fefaf0;
color: var(--base00);
}
2019-08-24 22:32:42 +00:00
/* Dark theme selected */
input#dark:checked ~ .main ,
2019-08-24 22:32:42 +00:00
input#dark:target ~ .main {
2019-09-19 21:36:20 +00:00
--main-background: var(--base03);
--main-foreground: var(--base0);
--second-foreground: var(--base01);
--reveal-foreground: var(--base1);
2019-08-13 07:35:42 +00:00
--reveal-background: var(--base02);
--soft-foreground: var(--base01);
--border-color: var(--base02);
--todo-txt: #000;
}
input#dark:checked ~ #labels ,
2019-08-24 22:32:42 +00:00
input#dark:target ~ #labels {
2019-08-13 07:35:42 +00:00
background: var(--base03);
2019-08-13 22:20:14 +00:00
color: var(--base0);
2019-08-13 07:35:42 +00:00
}
2019-08-14 12:54:14 +00:00
/* Light simple theme selected */
input#simple:checked ~ .main ,
input#simple:target ~ .main {
2019-08-14 12:54:14 +00:00
--main-background: #fff;
2019-09-19 21:36:20 +00:00
--main-foreground: #333;
--second-foreground: #333;
--reveal-foreground: #000;
2019-08-14 12:54:14 +00:00
--reveal-background: #fff;
2019-09-19 21:36:20 +00:00
--soft-foreground: #555;
--border-color: #333;
--todo-txt: #333;
--color-h1: #333;
--color-h2: #333;
--color-h3: #333;
--color-h4: #333;
--color-h5: #333;
--color-h6: #333;
2019-08-16 14:42:56 +00:00
--color-link: var(--magenta);
font-family: "Helvetica Neue";
font-size: 14px;
line-height: 1.5em;
}
input#simple:checked ~ .main .content,
input#simple:target ~ .main .content,
input#simple:checked ~ .main #content ,
input#simple:target ~ .main #content {
margin: 0 auto;
2019-08-14 12:54:14 +00:00
}
input#simple:checked ~ #labels ,
input#simple:target ~ #labels {
2019-08-14 12:54:14 +00:00
background: #fff;
2019-09-19 21:36:20 +00:00
color: #333;
font-family: "Helvetica Neue";
font-size: 14px;
line-height: 1.5em;
2019-08-14 12:54:14 +00:00
}
input#simple:checked ~ .main code,
input#simple:target ~ .main code,
input#simple:checked ~ .main pre
,
input#simple:target ~ .main pre
2019-08-16 15:21:40 +00:00
{
font-family: monospace;
}
2019-08-24 22:32:42 +00:00
/* Light modern theme selected */
input#modern:checked ~ .main ,
2019-08-24 22:32:42 +00:00
input#modern:target ~ .main {
2019-08-16 14:42:56 +00:00
--main-background: #fff;
--main-foreground: #444;
2019-09-19 21:36:20 +00:00
--second-foreground: #aaa;
--reveal-foreground: #000;
2019-08-16 14:42:56 +00:00
--reveal-background: #eee;
--soft-foreground: #888;
--border-color: #ddd;
--todo-txt: #000;
--color-link: var(--magenta);
font-family: "Helvetica Neue", sans-serif;
font-weight: 300;
font-size: 16px;
2019-08-24 14:29:29 +00:00
line-height: 1.5em;
2019-08-16 14:42:56 +00:00
}
2019-08-24 22:32:42 +00:00
input#modern:checked ~ #labels a ,
2019-08-24 22:32:42 +00:00
input#modern:target ~ #labels a {
color: #fff;
}
input#modern:checked ~ .main .content,
input#modern:target ~ .main .content,
input#modern:checked ~ .main #content ,
2019-08-24 22:32:42 +00:00
input#modern:target ~ .main #content {
2019-08-16 14:42:56 +00:00
margin: 0 auto;
}
input#modern:checked ~ .main blockquote:after ,
2019-08-24 22:32:42 +00:00
input#modern:target ~ .main blockquote:after {
display: none;
}
input#modern:checked ~ .main blockquote ,
2019-08-24 22:32:42 +00:00
input#modern:target ~ .main blockquote {
font-family: "Hoefler Text", Georgia, serif;
font-style: italic;
font-size: 20px;
line-height: 30px;
border-left: solid 10px;
}
input#modern:checked ~ .main h1,
input#modern:target ~ .main h1,
input#modern:checked ~ .main h2 ,
2019-08-24 22:32:42 +00:00
input#modern:target ~ .main h2 {
2019-08-16 14:42:56 +00:00
font-family: "Hoefler Text", Georgia, serif;
font-style: italic;
font-size: 2em;
2019-08-24 13:56:49 +00:00
line-height: 1.5em;
2019-08-16 14:42:56 +00:00
margin: 1em 0;
}
input#modern:checked ~ .main h3,
input#modern:target ~ .main h3,
input#modern:checked ~ .main h4,
input#modern:target ~ .main h4,
input#modern:checked ~ .main h5,
input#modern:target ~ .main h5,
input#modern:checked ~ .main h6 ,
2019-08-24 22:32:42 +00:00
input#modern:target ~ .main h6 {
2019-08-16 14:42:56 +00:00
font-weight: 200;
font-size: 1.5em;
2019-08-24 13:56:49 +00:00
line-height: 1.5em;
2019-08-16 14:42:56 +00:00
margin: 1em 0;
}
input#modern:checked ~ .main #preamble ,
2019-09-19 21:36:20 +00:00
input#modern:target ~ .main #preamble {
border-bottom: solid 1px rgba(0,0,0,0.2);
}
input#modern:checked ~ .main #postamble ,
2019-09-19 21:36:20 +00:00
input#modern:target ~ .main #postamble {
border-top: solid 1px rgba(0,0,0,0.2);
}
input#modern:checked ~ .main #preamble h1 ,
2019-08-24 22:32:42 +00:00
input#modern:target ~ .main #preamble h1 {
2019-08-16 14:42:56 +00:00
font-size: 4em;
2019-08-24 13:56:49 +00:00
line-height: 1.5em;
2019-09-19 21:36:20 +00:00
margin: .5em 0;
2019-08-16 14:42:56 +00:00
}
input#modern:checked ~ .main h1::before,
input#modern:target ~ .main h1::before,
input#modern:checked ~ .main h2::before,
input#modern:target ~ .main h2::before,
input#modern:checked ~ .main h3::before,
input#modern:target ~ .main h3::before,
input#modern:checked ~ .main h4::before,
input#modern:target ~ .main h4::before,
input#modern:checked ~ .main h5::before,
input#modern:target ~ .main h5::before,
input#modern:checked ~ .main h6::before ,
2019-08-24 22:32:42 +00:00
input#modern:target ~ .main h6::before {
2019-08-16 14:42:56 +00:00
content: "";
}
input#modern:checked ~ .main pre ,
2019-08-24 22:32:42 +00:00
input#modern:target ~ .main pre {
2019-08-16 14:42:56 +00:00
font-size: 14px;
line-height: 1em;
2019-08-16 14:42:56 +00:00
border-left: solid 4px var(--soft-foreground);
padding-left: 1em;
}
input#modern:checked ~ .main pre::before,
input#modern:target ~ .main pre::before,
input#modern:checked ~ .main pre::after ,
2019-08-24 22:32:42 +00:00
input#modern:target ~ .main pre::after {
2019-08-16 14:42:56 +00:00
content: "";
}
input#modern:checked ~ .main #preamble,
input#modern:target ~ .main #preamble,
input#modern:checked ~ .main #postamble ,
2019-08-24 22:32:42 +00:00
input#modern:target ~ .main #postamble {
2019-08-16 14:42:56 +00:00
background-color: var(--cyan);
2019-09-19 21:36:20 +00:00
padding: 1em 0;
2019-08-16 14:42:56 +00:00
}
input#modern:checked ~ .main #preamble ,
2019-09-06 10:18:42 +00:00
input#modern:target ~ .main #preamble {
margin-bottom: 2em;
}
input#modern:checked ~ .main #postamble ,
2019-09-06 10:18:42 +00:00
input#modern:target ~ .main #postamble {
margin-top: 2em;
}
input#modern:checked ~ .main #postamble code ,
2019-08-24 22:32:42 +00:00
input#modern:target ~ .main #postamble code {
2019-08-16 14:42:56 +00:00
background-color: transparent;
}
input#modern:checked ~ .main #preamble *,
input#modern:target ~ .main #preamble *,
input#modern:checked ~ .main #postamble * ,
2019-08-24 22:32:42 +00:00
input#modern:target ~ .main #postamble * {
2019-08-16 14:42:56 +00:00
color: #fff;
}
input#modern:checked ~ #labels ,
2019-08-24 22:32:42 +00:00
input#modern:target ~ #labels {
2019-08-16 14:42:56 +00:00
background: var(--cyan);
color: #fff;
}
input#modern:checked ~ #labels .content ,
2019-08-24 22:32:42 +00:00
input#modern:target ~ #labels .content {
2019-08-16 14:42:56 +00:00
margin: 0 auto;
}
/* Dark simple theme selected */
input#darksimple:checked ~ .main ,
input#darksimple:target ~ .main {
--main-background: #000;
2019-09-19 21:36:20 +00:00
--main-foreground: #ccc;
--second-foreground: #ccc;
--reveal-foreground: #fff;
--reveal-background: #000;
2019-09-19 21:36:20 +00:00
--soft-foreground: #ccc;
--border-color: #ccc;
--todo-txt: #ccc;
--color-h1: #ccc;
--color-h2: #ccc;
--color-h3: #ccc;
--color-h4: #ccc;
--color-h5: #ccc;
--color-h6: #ccc;
2019-08-16 14:42:56 +00:00
--color-link: var(--yellow);
font-family: "Helvetica Neue", sans-serif;
font-weight: 300;
font-size: 14px;
line-height: 1.5em;
}
input#darksimple:checked ~ #labels ,
input#darksimple:target ~ #labels {
background: #000;
2019-09-19 21:36:20 +00:00
color: #ccc;
font-family: "Helvetica Neue", sans-serif;
font-weight: 300;
font-size: 14px;
line-height: 1.5em;
}
input#darksimple:checked ~ .main code,
input#darksimple:target ~ .main code,
input#darksimple:checked ~ .main pre ,
input#darksimple:target ~ .main pre {
2019-08-16 15:21:40 +00:00
font-family: monospace;
}
input#darksimple:checked ~ .main .content,
input#darksimple:target ~ .main .content,
input#darksimple:checked ~ .main #content ,
input#darksimple:target ~ .main #content {
margin: 0 auto;
}
2019-09-16 09:42:49 +00:00
/* Dark matrix theme selected */
input#matrix:checked ~ .main ,
2019-09-16 09:42:49 +00:00
input#matrix:target ~ .main {
--main-background: #000;
--main-foreground: #0b0;
2019-09-19 21:36:20 +00:00
--second-foreground: #080;
--reveal-foreground: #0f0;
2019-09-16 09:42:49 +00:00
--reveal-background: #000;
2019-09-19 21:36:20 +00:00
--soft-foreground: #080;
--border-color: #080;
2019-09-16 09:42:49 +00:00
--todo-txt: #0b0;
--color-h1: #0b0;
--color-h2: #0b0;
--color-h3: #0b0;
--color-h4: #0b0;
--color-h5: #0b0;
--color-h6: #0b0;
--color-link: white;
font-family: monospace;
}
input#matrix:checked ~ #labels ,
2019-09-16 09:42:49 +00:00
input#matrix:target ~ #labels {
background: #000;
color: #0b0;
}
input#matrix:checked ~ .main code,
2019-09-16 09:42:49 +00:00
input#matrix:target ~ .main code,
input#matrix:checked ~ .main pre ,
2019-09-16 09:42:49 +00:00
input#matrix:target ~ .main pre {
font-family: monospace;
}
2019-08-16 15:21:40 +00:00
/* Default color theme */
2019-08-13 07:35:42 +00:00
body,.main {
2019-07-19 23:12:41 +00:00
background: var(--main-background);
color: var(--main-foreground);
2019-08-13 22:20:14 +00:00
min-height: 100vh;
2019-07-19 23:12:41 +00:00
}
2019-08-13 07:35:42 +00:00
::selection, .main ::selection,
::-moz-selection, .main ::-moz-selection {
2019-07-21 07:29:43 +00:00
color: var(--todo-txt);
background-color: var(--yellow);
}
2019-08-13 07:35:42 +00:00
a, a:visited,
.main a, .main a:visited {
2019-09-19 21:36:20 +00:00
color: var(--reveal-foreground);
2019-07-20 19:58:09 +00:00
}
2019-09-19 21:36:20 +00:00
b, strong, i, em {
color: var(--reveal-foreground);
}
body > input { display:none; }
2019-09-16 09:42:49 +00:00
.keywords {
color: var(--second-foreground);
}
li .keywords {
float: right;
2019-09-16 09:42:49 +00:00
}
.main ol > li:before, ol > li:before {
color: var(--soft-foreground)
}
2019-08-13 07:35:42 +00:00
pre::after,pre::before,hr:after,
.main pre::after,.main pre::before,.main hr:after {
2019-07-25 22:37:45 +00:00
color: var(--soft-foreground);
}
2019-08-13 07:35:42 +00:00
a:hover, a:active, a:focus,
.main a:hover,.main a:active,.main a:focus {
2019-08-14 12:54:14 +00:00
color: var(--color-link);
2019-07-20 19:58:09 +00:00
}
2019-08-13 07:35:42 +00:00
navigation a, navigation a:visited,
.main navigation a,.main navigation a:visited {
2019-07-28 16:44:25 +00:00
color: var(--soft-foreground);
}
2019-08-13 07:35:42 +00:00
navigation a:focus, navigation a:hover,
.main navigation a:focus,.main navigation a:hover {
2019-08-14 12:54:14 +00:00
color: var(--color-link);
2019-07-28 16:44:25 +00:00
}
2019-08-13 07:35:42 +00:00
thead,
.main thead {
2019-07-20 19:58:09 +00:00
background-color: var(--reveal-background);
color: var(--second-fg);
}
2019-08-13 07:35:42 +00:00
tr:hover,
.main tr:hover {
2019-07-20 19:58:09 +00:00
background-color: var(--reveal-background);
}
2019-08-13 07:35:42 +00:00
h1, .main h1 {
2019-08-14 12:54:14 +00:00
color: var(--color-h1);
}
#preamble h2, .main #preamble h2 {
color: var(--color-h4);
2019-07-20 19:58:09 +00:00
}
2019-08-13 07:35:42 +00:00
h2, .main h2 {
2019-08-14 12:54:14 +00:00
color: var(--color-h2);
2019-07-20 19:58:09 +00:00
}
2019-08-13 07:35:42 +00:00
h3, .main h3 {
2019-08-14 12:54:14 +00:00
color: var(--color-h3);
2019-07-20 19:58:09 +00:00
}
2019-08-13 07:35:42 +00:00
h4, .main h4 {
2019-08-14 12:54:14 +00:00
color: var(--color-h4);
2019-07-20 19:58:09 +00:00
}
2019-08-13 07:35:42 +00:00
h5, .main h5 {
2019-08-14 12:54:14 +00:00
color: var(--color-h5);
2019-07-20 19:58:09 +00:00
}
2019-08-13 07:35:42 +00:00
h6, .main h6 {
2019-08-14 12:54:14 +00:00
color: var(--color-h6);
2019-07-20 19:58:09 +00:00
}
2019-08-13 07:35:42 +00:00
table, td, th,
.main table,.main td,.main th {
2019-07-20 19:58:09 +00:00
border-color: var(--border-color);
}
2019-08-13 07:35:42 +00:00
code, .main code {
2019-07-20 19:58:09 +00:00
background: var(--reveal-background);
}
2019-08-13 07:35:42 +00:00
blockquote:after, .main blockquote:after {
2019-07-28 16:44:25 +00:00
color: var(--soft-foreground);
}
2019-08-13 07:35:42 +00:00
#preamble,#postamble,.main #preamble, .main #postamble {
2019-07-19 23:12:41 +00:00
border-color: var(--transparent);
}
2019-08-13 07:35:42 +00:00
.article-date, .main .article-date {
2019-07-28 16:44:25 +00:00
color: var(--soft-foreground);
}
/* -------- */
2019-07-11 22:26:33 +00:00
/* org colors */
2019-08-13 07:35:42 +00:00
.todo, .done, .main .todo, .main .done {
2019-08-15 21:20:09 +00:00
background-color: var(--reveal-background);
border: solid 1px;
height: 10px;
display: inline-block;
line-height: 12px;
font-weight: bold;
font-size: 10px;
2019-07-20 19:58:09 +00:00
}
2019-08-13 07:35:42 +00:00
.TODO, .main .TODO {
2019-08-15 21:20:09 +00:00
color: var(--red);
2019-07-20 19:58:09 +00:00
}
2019-08-13 07:35:42 +00:00
.IN_PROGRESS, .main .IN_PROGRESS {
2019-08-15 21:20:09 +00:00
color: var(--yellow);
2019-07-20 19:58:09 +00:00
}
2019-08-13 07:35:42 +00:00
.IN_REVIEW, .main .IN_REVIEW {
2019-08-15 21:20:09 +00:00
color: var(--cyan);
2019-07-20 19:58:09 +00:00
}
2019-08-13 07:35:42 +00:00
.HOLD, .main .HOLD {
2019-08-15 21:20:09 +00:00
color: var(--violet);
2019-07-20 19:58:09 +00:00
}
2019-08-13 07:35:42 +00:00
.WAITING, .main .WAITING {
2019-08-15 21:20:09 +00:00
color: var(--violet);
2019-07-20 19:58:09 +00:00
}
2019-08-13 07:35:42 +00:00
.DONE, .main .DONE {
2019-08-15 21:20:09 +00:00
color: var(--green);
2019-07-20 19:58:09 +00:00
}
2019-08-13 07:35:42 +00:00
.CANCELED, .main .CANCELED {
2019-08-15 21:20:09 +00:00
color: var(--magenta);
2019-07-20 19:58:09 +00:00
}
2019-08-13 07:35:42 +00:00
.notes, .main .notes {
2019-08-12 09:42:20 +00:00
background-color: var(--reveal-background);
color: var(--second-fg);
}