Skip to content

Instantly share code, notes, and snippets.

@shokinn
Last active September 22, 2017 09:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shokinn/c4d27a6f02ec5649f68ae29d4c0998e6 to your computer and use it in GitHub Desktop.
Save shokinn/c4d27a6f02ec5649f68ae29d4c0998e6 to your computer and use it in GitHub Desktop.
Blank black page with centered text input box
<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