| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- /* Kill margins and paddings; add border-box */
- *
- margin: 0
- padding: 0
- box-sizing: inherit
- &:before, &:after
- background-repeat: no-repeat
- box-sizing: inherit
- &:focus
- outline: none !important
-
- ::before, ::after
- text-decoration: inherit
- vertical-align: inherit
-
- html
- cursor: default
- font-family: system-ui
- line-height: 1.15
- tab-size: 4
- box-sizing: border-box
-
- /* Always set color/background/font-size on root */
- body
- margin: 0
- color: #000
- font-size: 16px
- font-family: Helvetica, Arial, sans-serif
-
- /* Remove list-style in navigation tags */
- nav
- ol, ul
- list-style: none
-
- /* Reset some other default styles */
- button, input, select, textarea
- font-family: inherit
- font-size: inherit
- line-height: inherit
|