12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /*
-
- BOX SIZING
-
- */
-
- html,
- body,
- div,
- article,
- section,
- main,
- footer,
- header,
- form,
- fieldset,
- legend,
- pre,
- code,
- a,
- h1,h2,h3,h4,h5,h6,
- p,
- ul,
- ol,
- li,
- dl,
- dt,
- dd,
- textarea,
- table,
- td,
- th,
- tr,
- input[type="email"],
- input[type="number"],
- input[type="password"],
- input[type="tel"],
- input[type="text"],
- input[type="url"],
- .border-box {
- box-sizing: border-box;
- }
|