_typography.scss 556 Bytes
Newer Older
1 2 3 4
// add more weight to Bootstrap header rules
h4, h5, h6 {
  font-weight: bold;
}
arturo's avatar
arturo committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32

/// from "_reboot.scss"
body {
  margin: 0;
  font-family: $font-family-base;
  @include font-size($font-size-base);
  font-weight: $font-weight-base;
  line-height: $line-height-base;
  color: $body-color;
  text-align: left;
  background-color: $body-bg;
}

/// from "_reboot.scss"
pre,
code,
kbd,
samp {
  font-family: $font-family-monospace;
}

/// For this project: underline every links
/// (legacy choice)
a:hover,
a:active,
a:focus {
  text-decoration: underline;
}