Last active
August 3, 2019 17:56
-
-
Save gustavocardoso/303d5223e280af7a2738232ef0eacbf2 to your computer and use it in GitHub Desktop.
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
| *, | |
| *:before, | |
| *:after { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| } | |
| html { | |
| height: 100%; | |
| } | |
| ::selection { | |
| background: transparent; | |
| text-shadow: none; | |
| } | |
| body { | |
| height: 100%; | |
| font: 16px/1.5 BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; | |
| color: #222; | |
| -webkit-font-smoothing: antialiased; | |
| -moz-osx-font-smoothing: grayscale; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment