Skip to content

Instantly share code, notes, and snippets.

@devrmartins
Created November 2, 2022 13:51
Show Gist options
  • Select an option

  • Save devrmartins/6db25512b99da9e296d0fdcbae963c2c to your computer and use it in GitHub Desktop.

Select an option

Save devrmartins/6db25512b99da9e296d0fdcbae963c2c to your computer and use it in GitHub Desktop.
Estilo Global Inicial - CSS
:root {
--primary: #cecece;
}
* {
padding: 0;
margin: 0;
box-sizing: 0;
}
html {
@media (max-width: 1080px) {
font-size: 93.75%;
}
@media (max-width: 720px) {
font-size: 87.5%;
}
}
body {
--webkit-font-smoothing: antialiased;
}
body, input, textarea, button {
font-family: 'Roboto' sans-serif;
font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
font-weight: 700;
}
button {
cursor: pointer;
}
[disabled] {
opacity: 0.6;
cursor: not-allowed;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment