Created
April 1, 2016 13:57
-
-
Save tonespy/33b3eed3a25ea029373b500eb9be984e to your computer and use it in GitHub Desktop.
This file contains hidden or 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
body { | |
font-family: Roboto, sans-serif; | |
background: #2C3D51; | |
padding: 1em; | |
-webkit-font-smoothing: antialiased; | |
} | |
.name { | |
background: #FFFFFF; | |
border: 0.6px solid #979797; | |
width: 250px; | |
height: 40px; | |
margin-top:25px; | |
vertical-align:middle; | |
padding: 10px; | |
} | |
.submit { | |
width: 250px; | |
height: 45px; | |
background: #2A8B21; | |
vertical-align:middle; | |
} | |
/*.main { | |
position: relative; | |
top: 50%; | |
transform: translateY(-50%); | |
}*/ |
This file contains hidden or 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
<!DOCTYPE <!DOCTYPE html> | |
<html> | |
<head> | |
<title>Call Friends</title> | |
<link rel="stylesheet" type="text/css" href="holder.css"> | |
</head> | |
<body> | |
<div class="main"> | |
<input class="name" placeholder="Full Name"></input> | |
<input class="name" placeholder="Display Name"></input> | |
<input class="name" placeholder="Phone Number"></input> | |
<button class="submit"></button> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment