A Pen by Lydia Katsamberis on CodePen.
Created
June 4, 2014 02:43
-
-
Save llkats/a3d3f954895f32380605 to your computer and use it in GitHub Desktop.
A Pen by Lydia Katsamberis.
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
p you have so much time |
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
var p = document.querySelector('p'); | |
p.style.fontSize = window.innerHeight / 2 + 'px'; | |
window.addEventListener('resize', function() { | |
p.style.fontSize = window.innerHeight / 2 + 'px'; | |
}); |
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
p { | |
font-family: 'Junction', sans-serif; | |
font-size: 100%; | |
margin: 0; | |
overflow: hidden; | |
padding: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment