| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- // Kill margins and paddings; add border-box
- *
- margin: 0
- padding: 0
- box-sizing: border-box
- &: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
-
- // Always set color/background/font-size on root
- body
- margin: 0
- color: $primary
- font-size: $ms
- font-family: Helvetica, Arial, sans-serif
-
- // Remove list-style in navigation tags
- nav
- ol, ul
- list-style: none
-
- // Useful for single page apps to use up all available space
- html, body
- height: 100%
-
- // Reset some other default styles
- button, input, select, textarea
- font-family: inherit
- font-size: inherit
- line-height: inherit
|