Finished style with vars for toto elements

This commit is contained in:
Yann Esposito (Yogsototh) 2019-07-20 01:42:00 +02:00
parent 5d82dea021
commit bea840981d
Signed by untrusted user who does not match committer: yogsototh
GPG key ID: 7B19A4C650D59646

View file

@ -183,10 +183,17 @@ navigation > a {
.footdef > sup::after { .footdef > sup::after {
content: ": "; content: ": ";
} }
/* colors
/* org mode statuses */
.timestamp-wrapper { font-family: menlo, monospace; font-size: 12px; }
.todo, .done { font-family: menlo, monospace;
font-size: 12px;
font-weight: bold;
line-height: 20px;
padding: 1px 1ex;
}
*/ /* colors */
:root { :root {
color-scheme: light dark; color-scheme: light dark;
@ -252,20 +259,12 @@ code { background: var(--reveal-background); }
border-color: var(--transparent); border-color: var(--transparent);
} }
/* -------- */ /* -------- */
/* org mode statuses */
.timestamp-wrapper { font-family: menlo, monospace; font-size: 12px; }
.todo, .done { font-family: menlo, monospace;
font-size: 12px;
font-weight: bold;
line-height: 20px;
padding: 1px 1ex;
}
/* org colors */ /* org colors */
.todo, .done { color: var(--todo-txt); } .todo, .done { color: var(--todo-txt); }
.TODO { background-color: #dc322f; } .TODO { background-color: var(--red); }
.IN_PROGRESS { background-color: #b58900; } .IN_PROGRESS { background-color: var(--yellow); }
.IN_REVIEW { background-color: #2aa198; } .IN_REVIEW { background-color: var(--cyan); }
.HOLD { background-color: #6c71c4; } .HOLD { background-color: var(--violet); }
.WAITING { background-color: #6c71c4; } .WAITING { background-color: var(--violet); }
.DONE { background-color: #859900; } .DONE { background-color: var(--green); }
.CANCELED { background-color: #d33682; } .CANCELED { background-color: var(--magenta); }