Skip to content

Instantly share code, notes, and snippets.

@dannyfritz
Last active December 21, 2015 17:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save dannyfritz/6344404 to your computer and use it in GitHub Desktop.
Save dannyfritz/6344404 to your computer and use it in GitHub Desktop.
pure font-stack test.
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/pure/0.2.1/pure-min.css">
<style>
.pure-g,
.pure-g-r {
font-family: "Bitstream Charter", "Tinos", "Dejavu Sans", "Droid Sans", "Helvetica", "Arial", sans-serif;
}
.pure-g [class *= "pure-u"],
.pure-g-r [class *= "pure-u"] {
font-family: serif;
}
</style>
</head>
<body>
<main class="pure-g-r">
<article class="pure-u-1-2">Lorem Ipsum</article>
<article class="pure-u-1-2">Plane Goes</article>
<article class="pure-u-1-4">Zip</article>
<article class="pure-u-1-4">Zop</article>
<article class="pure-u-1-4">Zoopity</article>
<article class="pure-u-1-4">Bop</article>
</main>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment