Last active
November 5, 2020 07:25
-
-
Save chmelevskij/75b9dbbc4f982929bdc816ed416c85b6 to your computer and use it in GitHub Desktop.
Just a reset of stuff I constantly have to type in when doing web dev
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
*, *::after, *::before { | |
font-family: sans-serif; | |
box-sizing: border-box; | |
} | |
html, body { | |
padding: 0; | |
margin: 0; | |
} | |
a, | |
button { | |
border: none; | |
background: none; | |
color: unset; | |
text-decoration: none; | |
padding: 0; | |
margin: 0; | |
} | |
ul, | |
li { | |
margin:0; | |
padding: 0; | |
text-indent: 0; | |
list-style-type: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment