Last active
May 7, 2023 20:41
-
-
Save Luisgustavom1/86df36ce61093ad0e532547d01ff7e6d to your computer and use it in GitHub Desktop.
A simple reset css
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
* { | |
margin: 0; | |
padding: 0; | |
box-sizing: border-box; | |
} | |
html { | |
font-size: 62.5%; | |
} | |
html, body { | |
height: 100%; | |
} | |
body { | |
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif | |
} | |
img, svg { | |
user-select: none; | |
} | |
ul, li, ol { | |
text-decoration: none; | |
list-style: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment