Skip to content

Instantly share code, notes, and snippets.

@Luisgustavom1
Last active May 7, 2023 20:41
Show Gist options
  • Save Luisgustavom1/86df36ce61093ad0e532547d01ff7e6d to your computer and use it in GitHub Desktop.
Save Luisgustavom1/86df36ce61093ad0e532547d01ff7e6d to your computer and use it in GitHub Desktop.
A simple reset css
* {
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