Skip to content

Instantly share code, notes, and snippets.

@pyozz
Last active February 9, 2025 03:49
Show Gist options
  • Save pyozz/f7feb36443884d3db8900c4e6320bfe4 to your computer and use it in GitHub Desktop.
Save pyozz/f7feb36443884d3db8900c4e6320bfe4 to your computer and use it in GitHub Desktop.
// 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