body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img,a img{border:none;}address,caption,cite,code,dfn,em,strong,th,var,optgroup{font-style:inherit;font-weight:inherit;}del,ins{text-decoration:none;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:baseline;}sub{vertical-align:baseline;}legend{color:#000;}

body {
  background: #F6F6F6;
  width: 100%;
  height: 100vh;
}

.runner,
.reporter-wrap footer {
  * {
    box-sizing: border-box;
  }

  &,
  input,
  textarea,
  button {
    color: #555;
    font-family: $font-sans;
    font-size: 13px;
  }

  p {
    line-height: 1.8;
    margin-bottom: 10px;
  }

  a {
    color: #3380FF;
    text-decoration: none;
    outline: none;

    &:hover,
    &:active,
    &:focus {
      color: #2363CC;
      text-decoration: underline;
      outline: inherit;
    }
  }

  button {
    background-color: #476fc9;
    border: 1px solid #3861bf;
    border-radius: 6px;
    display: inline-block;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.3;
    padding: 10px 16px;
    position: relative;
    text-align: center;
    touch-action: manipulation;
    vertical-align: middle;
    background-image: none;
    white-space: nowrap;
    user-select: none;

    &:hover {
      background-color: #3257ab;
      border-color: #2a498f;
    }

    &:active {
      box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    }

    &:focus {
      background-color: #3257ab;
      border-color: #1b2f5c;
    }
  }

  strong {
    color: #222;
  }

  em {
    font-style: italic;
  }

  code {
    background: #f9f2f4;
    color: #c7254e;
    border-radius: 2px;
    font-family: $font-mono;
    font-size: 1.05em;
    letter-spacing: 0.5px;
    padding: 2px 4px;
  }

  pre {
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 2px;
    color: #333;
    display: block;
    font-family: $font-mono;
    font-size: 12px;
    letter-spacing: 0.5px;
    margin: 0 0 10px;
    padding: 9.5px;
    line-height: 1.4;
    word-break: break-all;
    word-wrap: break-word;
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
}

%clearfix {
  &:before,
  &:after {
    content: "";
    display: table;
  }
  &:after {
    clear: both;
  }
}
