Skip to content

Instantly share code, notes, and snippets.

@davialcantaraa
Last active March 22, 2022 13:31
Show Gist options
  • Save davialcantaraa/0c65279ff5676c1c8d38e04fb880d266 to your computer and use it in GitHub Desktop.
Save davialcantaraa/0c65279ff5676c1c8d38e04fb880d266 to your computer and use it in GitHub Desktop.
Global styles
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
:root {
--white: #fff;
--background: #00111c;
}
body,
input,
textarea,
select,
button {
font: 400 1rem sans-serif;
color: var(--white);
-webkit-font-smoothing: antialiased;
}
button {
cursor: pointer;
background: none;
border: none;
}
a {
color: inherit;
text-decoration: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment