Created
January 16, 2018 04:51
-
-
Save ritcheyer/7c921eb4a974baa1420d2087be7d36ab to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ----- 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