Last active
October 17, 2018 12:53
-
-
Save Semdevmaster/0eed88602ac0c6df967182faab4a9581 to your computer and use it in GitHub Desktop.
CSS Start styles
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| html { | |
| box-sizing: border-box; | |
| } | |
| *, | |
| *:before, | |
| *:after { | |
| box-sizing: inherit; | |
| } | |
| body { | |
| margin: 0; | |
| background-color: #FFF; | |
| line-height: 1.15; | |
| text-rendering: optimizeLegibility; | |
| text-decoration-skip: objects; | |
| -webkit-text-size-adjust: 100%; | |
| -webkit-font-smoothing: antialiased; | |
| -webkit-tap-highlight-color: transparent; | |
| } | |
| ::-ms-clear { | |
| display: none; | |
| } | |
| :-webkit-autofill { | |
| box-shadow: 0 0 100px #FFF inset; | |
| -webkit-text-fill-color: currentColor; | |
| } | |
| .visually-hidden { | |
| position: absolute; | |
| z-index: -1; | |
| width: 0; | |
| height: 0; | |
| padding: 0; | |
| margin: 0; | |
| border: none; | |
| overflow: hidden; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment