Created
February 17, 2014 22:53
-
-
Save tomalec/9060879 to your computer and use it in GitHub Desktop.
/quotes.css file used in Starcounter "Getting Started" wiki (https://github.com/Starcounter/Starcounter/wiki/Responding-to-a-request)
This file contains hidden or 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
body{ | |
color: #D3D3D3; | |
font: 24px Helvetica, Arial, sans-serif; | |
background-color: #161616; | |
margin: 65px 40px; | |
padding: 0; | |
} | |
#Says{ | |
width: 13em; | |
margin-top: 25px; | |
line-height: 30px; | |
position: relative; | |
} | |
#Says:before, | |
#Says:after{ | |
font: 80px Times serif; | |
font-weight: bold; | |
position: absolute; | |
line-height: 30px; | |
margin-left: -22px; | |
content: "“"; | |
color: #414141; | |
z-index: -1; | |
} | |
#Says:after{ | |
bottom: -12px; | |
content: "”"; | |
} | |
#Person{ | |
font-size: 14px; | |
margin-top: 10px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment