Reset


Description

This file resets many of the element styles in order to reduce browser inconsistency.

The most important declaration to note is the font-size set on the html element.

html {
    font-size: 62.5%;
}

Note that .625 * 16 = 10.

This means that when working with rem units we just have to multiply by 10 instead of 16 to get the pixel equivalent value (assuming the browser base font size has not been changed).