Last active
September 22, 2017 09:02
-
-
Save shokinn/c4d27a6f02ec5649f68ae29d4c0998e6 to your computer and use it in GitHub Desktop.
Blank black page with centered text input box
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
<html> | |
<head> | |
<!DOCTYPE html> | |
<style> | |
@import url('https://fonts.googleapis.com/css?family=Roboto:300'); | |
</style> | |
</head> | |
<body style="background: #000;"> | |
<div style="width: 98%; | |
height: 100%; | |
margin: auto; | |
display: flex; | |
justify-content: center; | |
align-items: center;"> | |
<input type="text" name="team" autofocus style="height: 200px; | |
width: 100%; | |
border: none; | |
background: #000; | |
color: #fff; | |
text-align: center; | |
font-size: 10em; | |
font-family: 'Roboto', sans-serif;"> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment