A Pen by Xu Jingxin on CodePen.
Created
April 23, 2014 09:02
-
-
Save sailxjx/11207939 to your computer and use it in GitHub Desktop.
A Pen by Xu Jingxin.
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
<html> | |
<head> | |
<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'> | |
<link href='http://fonts.googleapis.com/css?family=Yellowtail' rel='stylesheet' type='text/css'> | |
</head> | |
<body> | |
<div class="logo"> | |
<div class="then"> | |
then | |
</div> | |
<div class="js"> | |
JS | |
</div> | |
</div> | |
</body> | |
</html> |
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
html, body { | |
} | |
.logo { | |
margin: 200px auto; | |
width: 500px; | |
} | |
.logo .then { | |
font-size: 120px; | |
display: inline-block; | |
float: left; | |
font-weight: 400; | |
font-family: Georgia, serif; | |
font-style: italic; | |
color: black; | |
} | |
.logo .js { | |
font-size: 150px; | |
color: red; | |
display: inline-block; | |
float: left; | |
font-weight: 400; | |
letter-spacing: 0; | |
font-family: 'Yellowtail', 'cursive'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment