Skip to content

Instantly share code, notes, and snippets.

@paulaleite
Last active July 19, 2020 01:39
Show Gist options
  • Save paulaleite/243e90e13fe25e613faf7d4c1a8d10cb to your computer and use it in GitHub Desktop.
Save paulaleite/243e90e13fe25e613faf7d4c1a8d10cb to your computer and use it in GitHub Desktop.
/* BASIC SETUP */
@charset #UTF-8;
/* 1 */
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
/* 2 */
html,
body {
background-color: #fff;
color: #fff;
font-family: 'Courier', sans-serif;
font-size: 20px;
font-weight: 400;
text-rendering: optimizeLegibility;
overflow-x: hidden;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment