Skip to content

Instantly share code, notes, and snippets.

@JoaoCardoso00
Last active May 31, 2022 02:01
Show Gist options
  • Save JoaoCardoso00/65e1f0aae4770bcd945d9023ffc95319 to your computer and use it in GitHub Desktop.
Save JoaoCardoso00/65e1f0aae4770bcd945d9023ffc95319 to your computer and use it in GitHub Desktop.
standard global styles for web projects
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
button {
cursor: pointer;
}
a {
color: inherit;
text-decoration: none;
}
@media (max-width: 1080px) {
html {
font-size: 93.75%;
}
}
@media (max-width: 720px) {
html {
font-size: 87.5%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment