//
// Scaffolding
// --------------------------------------------------


// Body reset
html,
body{
  height: 100%; 
}
html{
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
  font-family: @font-family-base;
  font-size: @font-size-small;
  //line-height: @line-height-base;
  color: @text-color;
  background-color: @body-bg;
}

em{
  font-style: italic;
}
pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}

// Reset fonts for relevant elements
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}


// Links
a {
  color: @link-color;
  text-decoration: none;
  outline: none;
  &:hover,
  &:focus {
    //color: @link-hover-color;
    text-decoration: underline;
  }

  /*&:focus {
    .tab-focus();
  }*/
}


