jon-b
5/25/2016 - 7:22 PM

Presnentation tags to add back in after normalize.css

Presnentation tags to add back in after normalize.css

/* Presentation Tags
--------------------------------------------- */
strong, b {
    font-weight: 700;
}

i, cite, em, var, address, dfn {
    font-style: italic;
}

s, strike, del {
  text-decoration: line-through;
}

code,
pre {
  border: 1px solid #e1e1e8;
  color: $dark-gray;
  background-color: $secondary-background-color;
  font-family: $mono-font-family;
  font-size: em(12);
}

code {
  padding: 4px 8px;
  white-space: nowrap;
}

pre {
  display: block;
  margin: 0 0 $small-spacing;
  padding: $small-spacing;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
  word-break: break-all;
}

pre code {
  padding: 0;
  border: 0;
  color: inherit;
  background-color: transparent;
  white-space: pre;
  white-space: pre-wrap;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}