Skip to content

Instantly share code, notes, and snippets.

@llkats
Created June 4, 2014 02:43
Show Gist options
  • Save llkats/a3d3f954895f32380605 to your computer and use it in GitHub Desktop.
Save llkats/a3d3f954895f32380605 to your computer and use it in GitHub Desktop.
A Pen by Lydia Katsamberis.
p you have so much time
var p = document.querySelector('p');
p.style.fontSize = window.innerHeight / 2 + 'px';
window.addEventListener('resize', function() {
p.style.fontSize = window.innerHeight / 2 + 'px';
});
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