Skip to content

Instantly share code, notes, and snippets.

@ritcheyer
Created January 16, 2018 04:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ritcheyer/7c921eb4a974baa1420d2087be7d36ab to your computer and use it in GitHub Desktop.
Save ritcheyer/7c921eb4a974baa1420d2087be7d36ab to your computer and use it in GitHub Desktop.
// ----- Base Reset
// ----------------------------------------------------
* {
box-sizing: border-box;
}
html {
line-height: 1.25;
}
// Define the "system" font family
@font-face {
font-family: system;
font-style: normal;
font-weight: 300;
src: local(".SFNSText-Light"),
local(".HelveticaNeueDeskInterface-Light"),
local(".LucidaGrandeUI"),
local("Ubuntu Light"),
local("Segoe UI Light"),
local("Roboto-Light"),
local("DroidSans"),
local("Tahoma");
}
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul,
li,
p {
font-family: "system"; // system font
margin: 0;
padding: 0;
}
ol,
ul {
list-style-type: none;
}
img,
video {
max-width: 100%;
width: 100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment