This PR adds a default normalize file to the design repo. Normalize files are used in a similar way to reset files -- only instead of the goal of resetting browser element stylings, the goal is to normalize the styling of elements across browsers. Stuff I did in this PR:
The out-of-the-box normalize.css is from github.com/necolas/normalize.css
It is included as scss/normalize/default.scss
Customizations of normalize styles specifically for the dat project are also included as scss/normalize/custom.scss (I moved the styles that had been in reset/box-model.scss to this file). The cascade in main.scss starts with normalize/default which can be overriden by normalize/custom
Let me know if there's anything about this that seems off to you.
cc:/ @Kriesse for review:
This PR adds a default normalize file to the design repo. Normalize files are used in a similar way to reset files -- only instead of the goal of resetting browser element stylings, the goal is to normalize the styling of elements across browsers. Stuff I did in this PR:
normalize.css
is from github.com/necolas/normalize.cssscss/normalize/default.scss
scss/normalize/custom.scss
(I moved the styles that had been in reset/box-model.scss to this file). The cascade inmain.scss
starts withnormalize/default
which can be overriden bynormalize/custom
Let me know if there's anything about this that seems off to you.
Closes issue #4