/* Main Section Width */
  .md-grid {
    max-width: 95vw;
  }
/* Main Section Width */

/* Tasklists */
  .markdown-body .task-list-item {
    list-style-type: none !important;
  }
  .markdown-body .task-list-item input[type="checkbox"] {
    margin: 0 4px 0.25em -20px;
    vertical-align: middle;
  }
  .markdown-body .task-list-control {
    display: inline;
  }
  .markdown-body .task-list-control {
    position: relative;
    display: inline-block;
    color: #555;
    cursor: pointer;
  }
  .markdown-body .task-list-control input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    z-index: -1;
  }
  .markdown-body .task-list-indicator {
    position: absolute;
    top: -8px;
    left: -18px;
    display: block;
    width: 14px;
    height: 14px;
    color: #eee;
    background-color: #eee;
    border-radius: .25rem;
  }
  .markdown-body .task-list-control input[type="checkbox"]:checked+.task-list-indicator::before {
    display: block;
    margin-top: -4px;
    margin-left: 2px;
    font-size: 16px;
    line-height: 1;
    content: "✔";
    color: #1EBB52;
  }
/* Tasklists */

/* Page Status Icons */
  /* Variables */
  :root {
    --md-status--comingsoon: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2M7 9.5C7 8.7 7.7 8 8.5 8s1.5.7 1.5 1.5S9.3 11 8.5 11 7 10.3 7 9.5m5 7.73c-1.75 0-3.29-.73-4.19-1.81L9.23 14c.45.72 1.52 1.23 2.77 1.23s2.32-.51 2.77-1.23l1.42 1.42c-.9 1.08-2.44 1.81-4.19 1.81M15.5 11c-.8 0-1.5-.7-1.5-1.5S14.7 8 15.5 8s1.5.7 1.5 1.5-.7 1.5-1.5 1.5Z"/></svg>')
  }
  /* Actual Status */
  .md-status--comingsoon::after {
    mask-image: var(--md-status--comingsoon);
    -webkit-mask-image: var(--md-status--comingsoon);
  }
/* Page Status Icons */

/* Mini-Icons */
.mini_icon {
  position: relative;
  height: 16px;
  width: 16px;
}
/* Mini-Icons */

/* OS Colors */
.fedora {
  color: crimson;
}
.macos {
  color: gray;
}
.windows {
  color: royalblue;
}
/* OS Colors */
