_typography.scss 652 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

/// 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;
}

18 19 20 21
.font-family-theme {
  font-family: $font-family-base;
}

arturo's avatar
arturo committed
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
/// 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;
}
37 38 39 40

.text-small {
  font-size: smaller;
}