Correcting box-sizing

This commit is contained in:
Tom Slominski
2015-03-06 15:08:50 +00:00
parent e774aa40ce
commit 52a48dbb28

View File

@@ -4,9 +4,12 @@ https://github.com/tomslominski/infinity-squared
*/ */
/* Set up */ /* Set up */
* {
box-sizing: border-box;
}
html { html {
font-size: 62.5%; font-size: 62.5%;
box-sizing: border-box;
} }
body { body {
@@ -101,7 +104,7 @@ a, a:visited {
/* Forms */ /* Forms */
.form-item { .form-item {
padding: 2%; padding: 2% 0;
} }
.full-width { .full-width {