@font-family: "Lucida Console", "Lucida Sans Typewriter", "monaco", "Bitstream Vera Sans Mono", "monospace";
@content-max-width-large: 45%;
@content-max-width-medium: 80%;
@content-max-width-small: 100%;

@color-bg: #292929;
@color-text: white;
@color-link: #6464fd;
@color-accent: #00adad;
@color-list-prefix: #b16d18;
@color-root: #dc8053;
@color-blue: lightblue;
@color-gray: #b4b4b4;
@color-dir: #88DEF2;
@color-green: green;
@color-highlight-bg: pink;
@color-input-outline: #30353a;
@color-input-focus-bg: #383636;

a {
  color: @color-link;
  font-weight: bolder;
}

body {
  background-color: @color-bg;
}

header {
  display: none;
}

.beer {
  width: 12px;
}

.bold {
  font-weight: bold;
}

#terminal {
  color: @color-text;
  font-family: @font-family;
  font-size: 10pt;
  background: @color-bg;
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
  top: 0px;
  bottom: 0;
  overflow: auto;
}

h4 {
  text-align: center;
}

ul {
  padding: 0;
  list-style-type: none;
}

kbd {
  font-family: 'Inconsolata', monospace;
  border: 1px solid #999;
  text-transform: uppercase;
  padding: 0 .2em;
}

.experiences, .how-i-work {
  h3 {
    color: @color-accent;
    font-weight: bold;
    font-size: 1.1em;
  }
}

.screenfetch {
  flex-wrap: wrap;

  .description {
    padding: 10px;
  }

  .avatar {
    width: 450px;
    justify-content: center;
    align-items: center;
  }

  .pre {
    color: @color-accent;
    font-weight: bold;
  }

  h3 {
    color: @color-accent;
    font-weight: bold;
    font-size: 1.1em;
  }

}

.list-prefix {
  color: @color-list-prefix;
  font-weight: 900;
}

.inline {
  display: inline-block;
}

.flex {
  display: flex;
}

.input {
  outline-color: @color-input-outline;
  border: none;
  display: inline-block;
  padding-top: 5px;
}

.input:focus {
  background-color: @color-input-focus-bg;
  outline: none;
  border: none;
  display: inline-block;
  padding-top: 5px;
}

.root {
  color: @color-root;
}

.blue {
  color: @color-blue;
}

.gray {
  color: @color-gray;
}

.dir {
  color: @color-dir;
}

.green {
  color: @color-green;
}

.highlighted {
  font-weight: bold;
  color: @color-green;
  background-color: @color-highlight-bg;
}

.footer {
  position: fixed;
  bottom: 0;
  text-align: center;
  line-height: 0.1px;
  width: 100%;
  color: @color-text;
  font-family: @font-family;

  .site-code {
    font-weight: bold;
    color: @color-blue;
  }
}

// content width //

.content-width {
  width: @content-max-width-large;
}

.full-content-with {
  width: ~"calc(450px + @{content-max-width-large})";
}

// media queries //

@media only screen and (max-width: 900px) {
  .full-content-with,
  .content-width {
    width: @content-max-width-medium;
  }

  .screenfetch {
    .description {
      width: @content-max-width-medium;
    }

    .avatar {
      width: 300px;
    }
  }
}


@media only screen and (max-width: 500px) {
  .full-content-with,
  .content-width {
    width: @content-max-width-small;
  }

  .screenfetch {
    .avatar {
      display: none;
    }

    .description {
      width: @content-max-width-small;
    }
  }
}
