Created
November 16, 2015 14:03
-
-
Save cyb3rd4d/937d8bec1cf6d0047bd5 to your computer and use it in GitHub Desktop.
A login box centered horizontally and vertically (thank flexbox)
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> | |
<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