Skip to content

Instantly share code, notes, and snippets.

@eknowles
Created July 11, 2021 09:37
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 eknowles/17144b794b055c53bb4a445d5ac57908 to your computer and use it in GitHub Desktop.
Save eknowles/17144b794b055c53bb4a445d5ac57908 to your computer and use it in GitHub Desktop.
<!doctype html>
<html lang="en">
<head>
<title>status</title>
</head>
<body>
<style>
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}
.app {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
max-width: 100vw;
overflow-wrap: break-word;
background: black;
}
.text {
color: lightgrey;
font-size: 10vw;
}
</style>
<div class="app">
<div class="text" contentEditable>this is a test</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment