Skip to content

Instantly share code, notes, and snippets.

@cyb3rd4d
Created November 16, 2015 14:03
Show Gist options
  • Save cyb3rd4d/937d8bec1cf6d0047bd5 to your computer and use it in GitHub Desktop.
Save cyb3rd4d/937d8bec1cf6d0047bd5 to your computer and use it in GitHub Desktop.
A login box centered horizontally and vertically (thank flexbox)
<html>
<style>
html, body, .container {
height: 100%;
}
body {
margin: 0;
padding: 0;
background-color: #eee;
}
.container {
display: flex;
}
.box-login {
margin: auto;
height: 400px;
width: 600px;
border: 1px solid #eee;
border-radius: 10px;
text-align: center;
background-color: white;
}
</style>
<body>
<div class="container">
<div class="box-login">
<h1>Sign in!</h1>
</div>
</div>
</body
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment