Skip to content

Commit

Permalink
Updated normalize.css.
Browse files Browse the repository at this point in the history
  • Loading branch information
pilkch committed Aug 27, 2013
1 parent 81a8138 commit f65363b
Showing 1 changed file with 20 additions and 16 deletions.
36 changes: 20 additions & 16 deletions data/web/css/normalize.css
@@ -1,4 +1,4 @@
/*! normalize.css v2.1.1 | MIT License | git.io/normalize */
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */

/* ==========================================================================
HTML5 display definitions
Expand Down Expand Up @@ -44,10 +44,12 @@ audio:not([controls]) {
}

/**
* Address styling not present in IE 8/9.
* Address `[hidden]` styling not present in IE 8/9.
* Hide the `template` element in IE, Safari, and Firefox < 22.
*/

[hidden] {
[hidden],
template {
display: none;
}

Expand All @@ -56,21 +58,15 @@ audio:not([controls]) {
========================================================================== */

/**
* 1. Prevent system color scheme's background color being used in Firefox, IE,
* and Opera.
* 2. Prevent system color scheme's text color being used in Firefox, IE, and
* Opera.
* 3. Set default font family to sans-serif.
* 4. Prevent iOS text size adjust after orientation change, without disabling
* 1. Set default font family to sans-serif.
* 2. Prevent iOS text size adjust after orientation change, without disabling
* user zoom.
*/

html {
background: #fff; /* 1 */
color: #000; /* 2 */
font-family: sans-serif; /* 3 */
-ms-text-size-adjust: 100%; /* 4 */
-webkit-text-size-adjust: 100%; /* 4 */
font-family: sans-serif; /* 1 */
-ms-text-size-adjust: 100%; /* 2 */
-webkit-text-size-adjust: 100%; /* 2 */
}

/**
Expand All @@ -85,6 +81,14 @@ body {
Links
========================================================================== */

/**
* Remove the gray background color from active links in IE 10.
*/

a {
background: transparent;
}

/**
* Address `outline` inconsistency between Chrome and other browsers.
*/
Expand Down Expand Up @@ -335,8 +339,8 @@ html input[disabled] {
}

/**
* 1. Address box sizing set to `content-box` in IE 8/9.
* 2. Remove excess padding in IE 8/9.
* 1. Address box sizing set to `content-box` in IE 8/9/10.
* 2. Remove excess padding in IE 8/9/10.
*/

input[type="checkbox"],
Expand Down

0 comments on commit f65363b

Please sign in to comment.