There's a missing percent sign in h1 style font size:

h1 {
  color: #DFB77C;
  font-size: 169.23; /* 22px/13px */
  font-weight: bold;
  line-height: 125%;
}

h2 {
  font-size: 138.46%; /* 18px/13px */
  line-height: 125%;
}
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

fmjrey’s picture

Patch attached.
Since my editor automatically deletes superfluous spaces, those have been removed in this patch as well.

fmjrey’s picture

Status: Active » Needs review
jeremycaldwell’s picture

Assigned: Unassigned » jeremycaldwell
Status: Needs review » Reviewed & tested by the community

Good catch! The correct code should read:

h1 {
  color: #DFB77C;
  font-size: 169.23%; /* 22px/13px */
  font-weight: bold;
  line-height: 125%;
}

This will be corrected in the next release of the theme.