Update normalize.css to v7.0.0 (#6491)

Merge pull request 6491
This commit is contained in:
Chris Finazzo 2017-10-27 12:25:36 -04:00 committed by jekyllbot
parent e635489c66
commit 39210d00e9
1 changed files with 23 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/*! normalize.css v6.0.0 | MIT License | github.com/necolas/normalize.css */ /*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document /* Document
========================================================================== */ ========================================================================== */
@ -18,6 +18,14 @@ html {
/* Sections /* Sections
========================================================================== */ ========================================================================== */
/**
* Remove the margin in all browsers (opinionated).
*/
body {
margin: 0;
}
/** /**
* Add the correct display in IE 9-. * Add the correct display in IE 9-.
*/ */
@ -225,7 +233,8 @@ svg:not(:root) {
========================================================================== */ ========================================================================== */
/** /**
* Remove the margin in Firefox and Safari. * 1. Change the font styles in all browsers (opinionated).
* 2. Remove the margin in Firefox and Safari.
*/ */
button, button,
@ -233,7 +242,10 @@ input,
optgroup, optgroup,
select, select,
textarea { textarea {
margin: 0; font-family: sans-serif; /* 1 */
font-size: 100%; /* 1 */
line-height: 1.15; /* 1 */
margin: 0; /* 2 */
} }
/** /**
@ -292,6 +304,14 @@ button:-moz-focusring,
outline: 1px dotted ButtonText; outline: 1px dotted ButtonText;
} }
/**
* Correct the padding in Firefox.
*/
fieldset {
padding: 0.35em 0.75em 0.625em;
}
/** /**
* 1. Correct the text wrapping in Edge and IE. * 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE. * 2. Correct the color inheritance from `fieldset` elements in IE.