a css reset

This commit is contained in:
Mark Moser 2017-03-20 16:22:24 -05:00
parent 39246ca138
commit 0b82cb1d01
3 changed files with 17 additions and 5 deletions

View File

@ -14,9 +14,10 @@
@import 'settings/variables'; @import 'settings/variables';
@import 'settings/fonts'; @import 'settings/fonts';
// @import 'settings/animations';
// @import 'generic/reset'; @import 'settings/reset';
/*= require normalize-css/normalize */
// @import 'elements/'; // @import 'elements/';
// @import 'objects/'; // @import 'objects/';

View File

@ -0,0 +1,11 @@
// normalize css is loaded, then these additions:
html {
box-sizing: border-box;
}
*,
*::before,
*::after {
box-sizing: inherit;
}

View File

@ -10,7 +10,8 @@
"tota11y": "", "tota11y": "",
"modernizr-lite": "*", "modernizr-lite": "*",
"html5shiv": "^3.7.3", "html5shiv": "^3.7.3",
"foundation-emails": "^2.2.1" "foundation-emails": "^2.2.1",
"normalize-css": "^5.0.0"
}, },
"ignore": [ "ignore": [
"**/.*", "**/.*",
@ -19,6 +20,5 @@
"test", "test",
"tests" "tests"
], ],
"devDependencies": { "devDependencies": {}
}
} }