/*
 * This file was somewhat inspired by
 * https://thomasf.github.io/solarized-css/solarized-dark.css
 * But the source is heavily outdated by modern standards.
 */
@import url("./solarized-colors.css");
@import url(https://fonts.googleapis.com/css?family=Inconsolata);
@import url(https://fonts.googleapis.com/css?family=PT+Sans);
@import url(https://fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700);
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden] {
  display: none;
}
html {
  font-family: sans-serif;
}
body {
  margin: 0;
}
a:focus {
  outline: thin dotted;
}
a:active,
a:hover {
  outline: 0;
}
h1 {
  font-size: 2em;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
mark {
  background: #ff0;
  color: #000;
}
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}
pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}
button,
input {
  line-height: normal;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  appearance: button;
  cursor: pointer;
}
button[disabled],
input[disabled] {
  cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="search"] {
  appearance: textfield;
  box-sizing: content-box;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
html {
  font-family: 'PT Sans', sans-serif;
}
pre,
code {
  font-family: 'Inconsolata', sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-weight: 700;
}
html {
  background-color: var(--solarized-rebase02);
  color: var(--solarized-rebase0);
  margin: 1em;
}
code {
  background-color: var(--solarized-rebase02);
  padding: 2px;
}
a {
  color: var(--solarized-yellow);
}
a:visited {
  color: var(--solarized-orange);
}
a:hover {
  color: var(--solarized-orange);
}
h1 {
  color: var(--solarized-magenta);
}
h2,
h3,
h4,
h5,
h6 {
  color: var(--solarized-green);
}
pre {
  background-color: var(--solarized-rebase03);
  color: var(--solarized-rebase0);
  border: 1pt solid var(--solarized-rebase01);
  padding: 1em;
  box-shadow: 5pt 5pt 8pt var(--solarized-rebase02);
}
pre code {
  background-color: var(--solarized-rebase03);
}
h1 {
  font-size: 2.8em;
}
h2 {
  font-size: 2.4em;
}
h3 {
  font-size: 1.8em;
}
h4 {
  font-size: 1.4em;
}
h5 {
  font-size: 1.3em;
}
h6 {
  font-size: 1.15em;
}
.tag {
  background-color: var(--solarized-rebase02);
  color: var(--solarized-magenta);
  padding: 0 0.2em;
}
.todo,
.next,
.done {
  color: var(--solarized-rebase03);
  background-color: var(--solarized-red);
  padding: 0 0.2em;
}
.tag {
  border-radius: 0.35em;
}
.todo {
  border-radius: 0.2em;
  background-color: var(--solarized-cyan);
}
.next {
  border-radius: 0.2em;
  background-color: var(--solarized-blue);
}
.active {
  border-radius: 0.2em;
  background-color: var(--solarized-blue);
}
.done {
  border-radius: 0.2em;
  background-color: var(--solarized-green);
}
.waiting {
  border-radius: 0.2em;
  background-color: var(--solarized-orange);
}
.hold {
  border-radius: 0.2em;
  background-color: var(--solarized-magenta);
}
.note {
  border-radius: 0.2em;
  background-color: var(--solarized-magenta);
}
.cancelled {
  border-radius: 0.2em;
  background-color: var(--solarized-green);
}
*::selection {
  background-color: var(--solarized-rebase01);
}
