Skip to content

Instantly share code, notes, and snippets.

@Iheanacho-ai
Created July 24, 2022 15:20
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 Iheanacho-ai/982cc4762bb129965e4a03a23a110256 to your computer and use it in GitHub Desktop.
Save Iheanacho-ai/982cc4762bb129965e4a03a23a110256 to your computer and use it in GitHub Desktop.
html,
body {
padding: 0;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}
* {
box-sizing: border-box;
}
.signup, .signin{
width: 400px;
display: flex;
flex-flow: column;
justify-content: center;
text-align: left;
background: #fff;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
border-radius: 7px;
margin: 10% auto;
padding: 30px;
}
.signup{
height: 450px;
}
label{
text-align: left;
margin-bottom: 5px;
}
.signup-input{
width: 100%;
height: 35px;
margin-bottom: 10px;
padding: 10px;
}
button{
cursor: pointer;
}
.button{
width: 100%;
height: 50px;
background-color: #111;
color: #fff;
border-radius: 30px;
margin-top: 30px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment