Skip to content

Instantly share code, notes, and snippets.

@devatorres
Last active November 23, 2022 12:02
Show Gist options
  • Save devatorres/103708967b3dd768cb1197ea22da6d92 to your computer and use it in GitHub Desktop.
Save devatorres/103708967b3dd768cb1197ea22da6d92 to your computer and use it in GitHub Desktop.
Mis imprescindibles propiedades CSS para todos los proyectos
:is(*, *:before, *::after) {
margin: 0;
padding: 0;
outline: none;
box-sizing: border-box;
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
html {
scroll-behavior: smooth;
background-color: #ffffff; /* Cambiar por el color base del proyecto */
-webkit-tap-highlight-color: transparent;
}
body {
width: 100vw;
min-height: 100vh;
background-color: transparent;
font-size: 16px; /* Cambiar por el tamaño general del proyecto */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment