/**
 * Failed to minify the file using clean-css v5.3.3. Serving the original version.
 * Original file: /npm/mine.css@10.0.2/dist/mine.css
 *
 * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files
 */
/* variables */
/* stylelint-disable */
/* TODO: Make sure this is up to date */
/* https://drafts.csswg.org/css-fonts-4/#ui-rounded-def */
:root {
  --system-sans: system-ui, ui-sans-serif, -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
  --system-mono: ui-monospace, system-ui-monospaced, 'SF Mono', /* mac */
                 inconsolata, consolas, /* windows */
                 'noto mono', 'droid sans mono', /* android */
                 'liberation mono', 'dejavu sans mono', 'ubuntu mono', /* linux */
                 monaco, 'courier new', /* older systems */
                 monospace; /* fallback */
  --system-serif: ui-serif, 'New York', charter, constantia, /* mac */
                  'lucida bright', lucidabright, 'lucida serif', lucida, /* windows */
                  'dejavu serif', 'bitstream vera serif', 'liberation serif', /* linux */
                  georgia, /* old systems */
                  serif; /* fallback */
  --system-round: ui-rounded, SFRounded, 'SF Rounded', 'SF Pro Rounded', var(--system-sans);
}
/* stylelint-enable */
/* stylelint-disable color-function-notation */
/* variable settings */
:root {
  /* font family */
  --font-body: var(--system-sans);
  --font-code: var(--system-mono);

  /* font size and spacing */
  --font-size-body: 14px;
  --font-size-scale: 0.25vw;

  /* note: use unitless line heights
   https://css-tricks.com/almanac/properties/l/line-height/#article-header-id-0 */
  --line-height-body: 1.75;
  --line-height-pre: 1.45;

  /* light colors */
  --light-text: hsl(0deg, 0%, 7%, 100%); /* #111 */
  --light-background: white;
  --light-layer-background: hsl(0deg, 0%, 100%, 0%); /* #fff */
  --light-accent-background: hsl(0deg, 0%, 95%, 100%); /* #f2f2f2 */
  --light-accent-midground: hsl(0deg, 0%, 84%, 100%); /* #d6d6d6 */
  --light-accent-foreground: hsl(0deg, 0%, 49%, 100%); /* #7d7d7d */
  --light-link-text: hsl(208deg, 100%, 50%, 100%); /* #08f */
  --light-mark-background: hsl(60deg, 100%, 50%, 100%); /* #ff0 */
  --light-code-text: var(--light-text);
  --light-code-background: var(--light-accent-background);
  --light-code-border: var(--light-accent-midground);

  /* dark colors */
  --dark-text: white;
  --dark-background: hsl(0deg, 0%, 12%, 100%); /* #1f1f1f from safari */
  --dark-layer-background: var(--transparent);
  --dark-accent-background: hsl(0deg, 0%, 20%, 100%); /* #333 */
  --dark-accent-midground: hsl(0deg, 0%, 30%, 100%); /* #4d4d4d */
  --dark-accent-foreground: hsl(0deg, 0%, 60%, 100%); /* #999 */
  --dark-link-text: hsl(206deg, 100%, 70%); /* #66bdff */
  --dark-mark-background: hsl(58deg, 66%, 30%, 100%); /* #7f7c1a */
  --dark-code-text: var(--dark-text);
  --dark-code-background: var(--dark-accent-background);
  --dark-code-border: var(--dark-accent-midground);

  /* Light mode */

  /* main colors */
  --text: var(--light-text);
  --background: var(--light-background);
  --layer-background: var(--light-layer-background);
  --accent-background: var(--light-accent-background);
  --accent-midground: var(--light-accent-midground);
  --accent-foreground: var(--light-accent-foreground);

  /* misc colors */
  --link-text: var(--light-link-text);
  --mark-background: var(--light-mark-background);
  --code-text: var(--light-code-text);
  --code-background: var(--light-code-background);
  --code-border: var(--light-code-border);

  color-scheme: light;
  supported-color-schemes: light;
}
@media (prefers-color-scheme: dark) {
  :root:where(:not(.light-mode)) {
    /* main colors */
    --text: var(--dark-text);
    --background: var(--dark-background);
    --layer-background: var(--dark-layer-background);
    --accent-background: var(--dark-accent-background);
    --accent-midground: var(--dark-accent-midground);
    --accent-foreground: var(--dark-accent-foreground);

    /* misc colors */
    --link-text: var(--dark-link-text);
    --mark-background: var(--dark-mark-background);
    --code-text: var(--dark-code-text);
    --code-background: var(--dark-code-background);
    --code-border: var(--dark-code-border);

    color-scheme: dark;
    supported-color-schemes: dark;
  }
}
:root:where(.dark-mode) {
    /* main colors */
    --text: var(--dark-text);
    --background: var(--dark-background);
    --layer-background: var(--dark-layer-background);
    --accent-background: var(--dark-accent-background);
    --accent-midground: var(--dark-accent-midground);
    --accent-foreground: var(--dark-accent-foreground);

    /* misc colors */
    --link-text: var(--dark-link-text);
    --mark-background: var(--dark-mark-background);
    --code-text: var(--dark-code-text);
    --code-background: var(--dark-code-background);
    --code-border: var(--dark-code-border);

    color-scheme: dark;
    supported-color-schemes: dark;
  }
@media print {
  /* Improve printing on lighter colors by darkening them */
  :root {
    --print-accent-background: hsl(0deg, 0%, 83%, 100%); /* #f2f2f2 */
    --print-accent-midground:  hsl(0deg, 0%, 72%, 100%); /* #d6d6d6 */
    --print-accent-foreground: hsl(0deg, 0%, 35%, 100%); /* #7d7d7d */
    --accent-background: var(--print-accent-background);
    --accent-midground: var(--print-accent-midground);
    --accent-foreground: var(--print-accent-foreground);
    --light-code-background: var(--print-accent-background);
    --light-code-border: var(--print-accent-midground);
  }
}
/* html should be at the top */
html {
  box-sizing: border-box;
  font-family: var(--font-body);
  font-size: calc(var(--font-size-body) + var(--font-size-scale));
  line-height: var(--line-height-body);
  font-kerning: normal;
  text-rendering: optimizelegibility;
  font-feature-settings: normal;
}
/* Remove the margin in all browsers. */
body {
  margin: 0;
  background-color: var(--background);
  color: var(--text);
}
/* apply a natural box layout model to all elements, but allowing components to change
   https://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
*, *::before, *::after {
  box-sizing: inherit;
}
h1, h2, h3, h4, h5, h6 {
  /* TODO: Needed? */
  font-weight: 500;
  line-height: 1.25em;
  margin-bottom: 1.25rem;
  margin-top: 2rem;
  position: relative;

  /* rep the smallies */
  & small {
    color: var(--accent-foreground);
    font-size: 0.7em;
    font-weight: 400;
  }

  & code { font-size: 0.9em; }
}
h1 { font-size: 2.75em; }
h2 { font-size: 2.25em; }
h3 { font-size: 1.75em; }
h4 { font-size: 1.5em; }
h5 { font-size: 1.25em; }
h6 {
  font-size: 1em;
  color: var(--accent-foreground);
  letter-spacing: 00.025em;
}
/* tighten up body copy just a smidge */
p { letter-spacing: -0.01em; }
/* 1. Remove the gray background on active links in IE 10.
   2. Remove gaps in links underline in iOS 8+ and Safari 8+. */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto; /* 2 */
  color: var(--link-text);
  text-decoration: none;

  /* Remove the outline on focused links when they are also active or hovered
     in all browsers (opinionated). */
  &:active, &:hover {
    outline: 0;
    outline-width: 0;
  }

  &:active, &:focus, &:hover { text-decoration: underline; }
}
ul, ol {
  padding: 0;
  padding-left: 2em;

  & ol { list-style-type: lower-roman; }

  & ul, & ol {
    margin-top: 0;
    margin-bottom: 0;

    & ol { list-style-type: lower-alpha; }
  }
}
li > p { margin-top: 1em; }
blockquote {
  margin: 0 0 1rem;
  padding: 0 1rem;
  color: var(--accent-foreground);
  border-left: 4px solid var(--accent-midground);

  & > :first-child { margin-top: 0; }
  & > :last-child { margin-bottom: 0; }
}
/* 1. Prevent the duplicate application of `bolder` by the next rule in Safari 6.
   2. Add the correct font weight in Chrome, Edge, and Safari. */
b, strong {
  font-weight: inherit; /* 1 */
  font-weight: 600; /* 2 */
}
/* Add the correct background and color in IE 9-. */
mark {
  background-color: var(--mark-background);
  color: var(--text);
}
/* Prevent `sub` and `sup` elements from affecting the line height in
   all browsers. */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub { bottom: -0.25em; }
sup { top: -0.5em; }
/* 1. Correct the inheritance and scaling of font size in all browsers.
   2. Correct the odd `em` font sizing in all browsers. */
code, pre, kbd, samp {
  font-family: var(--font-code); /* 1 */
  font-size: 90%; /* 2 */
  color: var(--code-text);
}
code {
  padding: 0.2em 0.4em;
  margin: 0;
}
pre, code {
  background-color: var(--code-background);
  border-radius: 5px;
}
a code, pre, kbd, samp {
  color: var(--link-text);
}
pre {
  overflow: auto;
  word-wrap: normal;
  line-height: var(--line-height-pre);
  border: 1px solid var(--code-border);

  & code {
    background: transparent;
    display: block;
    padding: 0.5em;
    line-height: inherit;
    word-wrap: normal;
    border-radius: unset;

    &::before, &::after { content: normal; }
  }

  & > code {
    border: 0;
    font-size: 1em;
    white-space: pre;
    word-break: normal;
  }
}
/* Keyboard kbd shortcut key style */
kbd {
  background-color: var(--layer-background);
  background-image: linear-gradient(var(--layer-background), var(--accent-background) 75%);
  background-repeat: repeat-x;
  border: 1px solid var(--accent-midground);
  border-radius: 2px;
  box-shadow: 0 1px 0 var(--accent-midground); /* depth */
  color: var(--text);
  display: inline-block;
  line-height: 0.95em;
  margin: 0 1px;
  padding: 5px 5px 1px;
}
td, th { padding: 0; }
table {
  border-collapse: collapse;
  border-spacing: 0;
  display: block;
  width: 100%;
  overflow: auto;
  word-break: normal;
  word-break: keep-all;

  & th, & td {
    padding: 6px 13px;
    border: 1px solid var(--accent-midground);
  }

  & th { font-weight: bold; }

  & tr {
    background-color: var(--layer-background);
    border-top: 1px solid var(--accent-midground);

    &:nth-child(2n) { background-color: var(--accent-background); }
  }
}
/* 1. Add the correct box sizing in Firefox.
   2. Show the overflow in Edge and IE. */
hr {
  box-sizing: content-box; /* 1 */
  overflow: visible; /* 2 */
  background: transparent;
  height: 4px;
  padding: 0;
  margin: 1em 0;
  background-color: var(--accent-midground);
  border: 0 none;

  &::before {
    display: table;
    content: "";
  }

  &::after {
    display: table;
    clear: both;
    content: "";
  }
}
/* Remove the border on images inside links in IE 10-. */
img {
  border: 0;
  border-style: none;
  max-width: 100%;
  height: auto;
}
/* Hide the overflow in IE. */
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 0;

  & img, & video {
    background: var(--layer-background);
    border: 1px solid var(--accent-midground);
    border-radius: 5px;
    padding: 0.25em;
  }

  &.borderless img, &.borderless video {
    border: none;
    padding: 0;
  }
}
figcaption {
  font-style: italic;
  font-size: 0.75em;
  margin: 0;
  color: var(--accent-foreground);
}
/* 1. Remove the bottom border in Firefox 39-
   2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}
/* Add the correct font style in Android 4.3-. */
dfn { font-style: italic; }
dd { margin-left: 0; }
dl {
  padding: 0;

  & dt {
    padding: 0;
    margin-top: 1em;
    font-size: 1em;
    font-style: italic;
    font-weight: 600;
  }

  & dd {
    padding: 0 1em;
    margin-bottom: 1.25em;
  }
}
/* same margins for all typographic block elements */
p, blockquote, ul, ol, dl, table, pre {
  margin-top: 0;
  margin-bottom: 1.25em;
}
/* Add the correct font size in all browsers. */
small { font-size: 80%; }
input[type="reset"], input[type="submit"], input[type="button"], button {
  /* Button */
}
input[type="checkbox"] {
  /* fix iOS Safari clipping */
  transform: translate(0);
}
input[type="radio"] {
  /* fix iOS Safari clipping */
  transform: translate(0);
}
input[type="search"] {
  /* Fix search box appearance safari */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}
[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
            appearance: none;
    background-color: var(--accent-foreground);
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23777'><path d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/></svg>");
            mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23777'><path d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/></svg>");
    background-size: 20px 20px;
    height: 20px;
    width: 20px;
}
textarea, input[type="date"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"] {
  border-color: var(--accent-midground);
  border-radius: 5px;
  border-width: 2px;
  border-style: solid;
  font-size: calc(var(--font-size-body) + var(--font-size-scale));
  padding: 0.4em;
  color: var(--text);
  background-color: var(--background);
  width: 15.5em;

  &:focus {
    /* Form focused */
    border-color: var(--accent-foreground);
  }

  &:disabled {
    /* Form disabled */
    background-color: var(--accent-background);
  }

  &:hover:not([disabled]) {
    border-color: var(--accent-foreground);
  }
}
label {
  /* Input labels */
  font-weight: 600;

  &.block {
    display: block;
  }

  &.inline-block {
    display: inline-block;
  }

  &.inline-flex {
    display: inline-flex;
  }

  &.inline-grid {
    display: inline-grid;
  }
}
fieldset {
  border-radius: 5px;
  border-style: solid;
  border-width: 2px;
  border-color: var(--accent-midground);
}
input {
  &.block {
    display: block;
  }

  &.inline-block {
    display: inline-block;
  }

  &.inline-flex {
    display: inline-flex;
  }

  &.inline-grid {
    display: inline-grid;
  }
}

/*# sourceMappingURL=mine.css.map */