Created
June 5, 2013 16:34
-
-
Save joyrexus/5715310 to your computer and use it in GitHub Desktop.
Simple template/layout for quotations.
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
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<link href='http://fonts.googleapis.com/css?family=Roboto+Slab:100' rel='stylesheet' | |
type='text/css'> | |
<style> | |
body { | |
font-family: 'Roboto Slab'; | |
font-weight: 100; | |
font-size: 100px; | |
} | |
#quote { | |
color: #666; | |
text-align: center; | |
letter-spacing: -.08em; | |
margin: 100px 0px 0px 0px; | |
} | |
.lighter { | |
color: #999; | |
} | |
</style> | |
<body> | |
<div id="quote"> | |
Dubito ergo sum <span class="lighter">☃</span> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment