Skip to content

Instantly share code, notes, and snippets.

@Semdevmaster
Last active October 17, 2018 12:53
Show Gist options
  • Select an option

  • Save Semdevmaster/0eed88602ac0c6df967182faab4a9581 to your computer and use it in GitHub Desktop.

Select an option

Save Semdevmaster/0eed88602ac0c6df967182faab4a9581 to your computer and use it in GitHub Desktop.
CSS Start styles
html {
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body {
margin: 0;
background-color: #FFF;
line-height: 1.15;
text-rendering: optimizeLegibility;
text-decoration-skip: objects;
-webkit-text-size-adjust: 100%;
-webkit-font-smoothing: antialiased;
-webkit-tap-highlight-color: transparent;
}
::-ms-clear {
display: none;
}
:-webkit-autofill {
box-shadow: 0 0 100px #FFF inset;
-webkit-text-fill-color: currentColor;
}
.visually-hidden {
position: absolute;
z-index: -1;
width: 0;
height: 0;
padding: 0;
margin: 0;
border: none;
overflow: hidden;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment