body {
  margin: 60px auto;
  width: 100%;
  max-width: 1200px;
  font-family: "Inter", "Nanum Gothic Coding", monospace;
  display: flex;
  flex-flow: column;
  font-size: 15px;
  background: #eceff4;
  color: #2e3440; }

/* fira-code-regular - latin_greek */
@font-face {
  font-family: "Fira Code";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("/static/fonts/FiraCode-Medium.woff") format("woff"); }

/* fira-code-600 - latin_greek */
@font-face {
  font-family: "Fira Code";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("/static/fonts/FiraCode-Medium.woff") format("woff"); }

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("/static/fonts/Inter-Regular.woff") format("woff"); }

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("/static/fonts/Inter-Medium.woff") format("woff"); }

.title {
  padding-top: 1em;
  padding-bottom: 0.5em;
  font-size: 2em;
  font-weight: 600;
  font-family: "Fira Code"; }

.submenu {
  padding-bottom: 20px;
  font-family: "Fira Code"; }
  .submenu ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    .submenu ul li {
      float: left;
      position: relative;
      padding-left: 2px;
      padding-right: 2px;
      padding-bottom: 4px; }
      .submenu ul li a,
      .submenu ul li a:visited {
        cursor: pointer;
        display: block;
        padding: 0 20px;
        line-height: 30px;
        background: #4c566a;
        color: #e5e9f0;
        text-decoration: none; }
        .submenu ul li a:hover,
        .submenu ul li a:visited:hover {
          background: #b48ead;
          color: #e5e9f0; }

@media only screen and (max-width: 600px) {
  body {
    margin: 0px auto;
    font-size: 3vw; }
  .publications {
    padding-left: 1vw;
    padding-right: 1vw; }
  .blog {
    padding-left: 1vw;
    padding-right: 1vw; } }

#main {
  flex: auto;
  min-height: 100vh;
  max-width: 820px;
  overflow: hidden;
  display: flex;
  flex-flow: column; }

.main-list {
  height: 100%;
  display: grid; }

#main > nav,
#main > main,
#main > footer {
  padding: 15px; }

#main > nav {
  text-align: center; }

#main > main {
  flex: 1;
  margin-right: 25px; }

#main > footer {
  padding-top: 50px; }

a {
  text-decoration: none;
  color: #5e81ac; }

a:hover {
  text-decoration: underline; }

p {
  /* font-size: 1.3em; */
  line-height: 1.4em;
  hyphens: auto;
  display: inline-block;
  text-align: justify; }

code {
  background-color: #d8dee9;
  font-family: "Fira Code";
  color: #434c5e; }
  code.endpoint {
    background-color: #5e81ac;
    color: #eceff4;
    padding-left: 6px;
    padding-right: 6px; }
  code.endpoint-results {
    background-color: #81a1c1;
    color: #eceff4;
    padding-left: 6px;
    padding-right: 6px; }
  code.method-post {
    background-color: #bf616a;
    color: #eceff4;
    padding-left: 6px;
    padding-right: 6px; }
  code.method-get {
    background-color: #d08770;
    color: #eceff4;
    padding-left: 6px;
    padding-right: 6px; }
  code.method-put {
    background-color: #b48ead;
    color: #eceff4;
    padding-left: 6px;
    padding-right: 6px; }
  code.method-delete {
    background-color: #a3be8c;
    color: #eceff4;
    padding-left: 6px;
    padding-right: 6px; }

footer {
  border-top: 2px solid #4c566a;
  font-size: 0.8em;
  font-family: "Fira Code";
  color: #4c566a;
  text-align: center; }

hr {
  border: none;
  border-top: 1px solid gray;
  max-width: 25px;
  margin: 35px auto; }

.projects-header {
  width: 100%;
  background-color: #3b4252;
  font-size: 18px;
  padding: 4px;
  box-sizing: border-box;
  font-weight: 600;
  color: #e5e9f0; }

.projects-main {
  display: block;
  margin-top: 2px;
  margin-bottom: 2px; }
  .projects-main .project-frame {
    display: block; }
    .projects-main .project-frame .project {
      display: flex;
      padding: 6px;
      background-color: #81a1c1; }
      .projects-main .project-frame .project .project-id {
        min-width: 20px; }
      .projects-main .project-frame .project .project-name {
        width: 300px; }
    .projects-main .project-frame .project-tasks {
      width: 100%;
      margin: 0px; }
      .projects-main .project-frame .project-tasks table {
        width: 100%; }
      .projects-main .project-frame .project-tasks thead {
        background-color: #8fbcbb;
        font-weight: 600; }
      .projects-main .project-frame .project-tasks td {
        padding: 6px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap; }
      .projects-main .project-frame .project-tasks .task-status,
      .projects-main .project-frame .project-tasks .task-id {
        width: 40px;
        text-align: center; }
      .projects-main .project-frame .project-tasks .task-created {
        width: 80px; }
      .projects-main .project-frame .project-tasks tr:nth-child(even) {
        background-color: #d8dee9; }

.add-projects {
  height: 100px; }

button {
  background-color: #a3be8c;
  color: #eceff4;
  border: 2px solid #4c566a;
  padding: 4px;
  font-size: 11pt;
  border-radius: 4px;
  margin-left: 4px;
  margin-right: 4px; }
  button:hover {
    filter: brightness(120%);
    color: #4c566a; }
  button:active {
    transform: translateY(2px); }
  button.delete {
    background-color: #bf616a; }
  button.edit {
    background-color: #88c0d0; }
  button.disabled {
    transform: translateY(0px);
    background-color: #d8dee9;
    color: #eceff4;
    filter: brightness(100%); }

.vertical-sep {
  height: 20px; }

.task-status-pending {
  background-color: #bf616a;
  color: #e5e9f0;
  border-radius: 10px; }

.task-status-processing {
  background-color: #ebcb8b;
  border-radius: 10px; }

.task-status-done {
  background-color: #a3be8c;
  border-radius: 10px; }

.disclaimer {
  font-family: "Inter";
  font-style: italic;
  color: #bf616a;
  width: 50%; }

.login-form {
  display: block;
  background-color: #d8dee9;
  max-width: 40%;
  margin-left: auto;
  margin-right: auto;
  padding: 10px; }
  .login-form div {
    display: flex;
    padding: 4px; }
  .login-form .labels {
    width: 100px; }

.after-form {
  height: 50px; }

.code-buttons {
  width: 100%;
  background-color: #3b4252;
  color: #e5e9f0;
  justify-content: space-between;
  display: flex; }
  .code-buttons button {
    border-radius: 0;
    font-size: 18px;
    font-weight: 600;
    background-color: #3b4252;
    padding: 10px;
    border: 0; }
    .code-buttons button:active {
      transform: translateY(0px); }
    .code-buttons button:hover {
      background-color: #4c566a;
      color: #e5e9f0; }
  .code-buttons .active {
    background-color: #ebcb8b;
    color: #434c5e; }

button.collapse {
  background-color: #bf616a;
  font-family: "Fira Code"; }

pre {
  background-color: #d8dee9;
  color: #3b4252;
  font-family: "Fira Code";
  font-size: 16px;
  padding: 6px;
  padding-left: 20px;
  overflow-y: hidden; }
  pre .method-post {
    background-color: #bf616a;
    color: #d8dee9; }
  pre .method-get {
    background-color: #d08770;
    color: #d8dee9; }
  pre .method-put {
    background-color: #b48ead;
    color: #d8dee9; }
  pre .method-delete {
    background-color: #a3be8c;
    color: #d8dee9; }
  pre.shell {
    font-size: 14px; }

div.div-example {
  overflow-y: hidden; }

.code-wrapper h3 {
  font-size: 18px;
  display: list-item;
  list-style-type: disc;
  list-style-position: inside; }

h1 {
  color: #5e81ac; }

h2 {
  padding: 0;
  margin: 0; }

ol {
  padding-left: 2em; }
  ol.instructions > li {
    font-size: 16px;
    padding: 8px;
    font-weight: 600;
    background-color: #81a1c1;
    color: #2e3440; }

div.content {
  width: 700px; }

/*# sourceMappingURL=main.scss.css.map */