Last active
February 9, 2025 03:49
-
-
Save pyozz/f7feb36443884d3db8900c4e6320bfe4 to your computer and use it in GitHub Desktop.
This file contains 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
// sass-lint:disable no-vendor-prefixes | |
* { | |
margin: 0; | |
box-sizing: border-box; | |
// font-family | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
} | |
html { | |
// font-family | |
// font-size | |
} | |
body { | |
// font-family | |
// color | |
} | |
h1 { | |
margin: 0; | |
} | |
p { | |
// font-size | |
// line-height | |
// letter-spacing | |
// color | |
} | |
a { | |
color: inherit; | |
text-decoration: none; | |
} | |
button, | |
input, | |
select, | |
textarea { | |
border: none; | |
background-color: transparent; | |
// font-family | |
// font-size | |
&:focus, | |
&:active { | |
outline: none; | |
box-shadow: none; | |
} | |
} | |
a, | |
button { | |
cursor: pointer; | |
} | |
button { | |
padding: 0; | |
} | |
ul, | |
ol, | |
li { | |
padding-left: 0; | |
margin-left: 0; | |
list-style-type: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment