Normalize rather than Reset.

The reset we used was a mix of Normalize, the Paul Irish reset,
sprinkled with some blueprint.css, and base styles. It was hard to
maintain and just seemed outdated (setting the base font-size to 10px
instead of 16px, among other things).

Normalize sets saner defaults and is generally just not as disruptive
as a full reset.

The code was added as is, has only its comments stripped (for now), and
is not mixed with any styles to make future updates to it as easy as
possible.

See #3, #44, #174, #267, #617.
This commit is contained in:
Konstantin Obenland 2014-12-30 01:28:19 +01:00
parent 37d283481f
commit 6c47be98c1
18 changed files with 501 additions and 291 deletions

View file

@ -15,16 +15,14 @@ Use it to make something cool, have fun, and share what you've learned with othe
_s is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.
Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Reset
1.0 Normalize
2.0 Typography
3.0 Elements
4.0 Forms
@ -48,9 +46,9 @@ and Blueprint http://www.blueprintcss.org/
@import "mixins/mixins-master";
/*--------------------------------------------------------------
1.0 Reset
1.0 Normalize
--------------------------------------------------------------*/
@import "reset";
@import "normalize";
/*--------------------------------------------------------------
2.0 Typography