Skip to content

Instantly share code, notes, and snippets.

@invisiblegeek1
Last active November 18, 2021 06:34
Show Gist options
  • Save invisiblegeek1/ef86bd8dcd758bf6abfc0fa14d191c29 to your computer and use it in GitHub Desktop.
Save invisiblegeek1/ef86bd8dcd758bf6abfc0fa14d191c29 to your computer and use it in GitHub Desktop.
.Sign-up-page-container{
display: flex;
align-items: center;
/* justify-content: center; */
width: 100%;
height: 100vh;
flex-flow: column;
background-color: #f3f2ef;
margin: 0;
padding: 0;
}
.Greeting-quote-container{
font-weight: 500;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
color: #000;
font-size: 30px;
width: 700px;
text-align: center;
margin: 10px;
padding: 10px;
}
.Sign-up-form{
display: flex;
align-items: center;
justify-content: center;
flex-flow: column;
}
.User-details-input-container,.User-action-btn-container{
display: flex;
align-items: center;
justify-content: center;
flex-flow: column;
margin: 10px;
outline: none;
}
.User-email-mobile,.User-password,.User-Name{
width: 350px;
height: 40px;
border: 1px solid rgba(0, 0, 0, 0.885);
border-radius: 2px;
margin: 10px;
padding-left: 5px;
}
.Sign-Up-btn{
width: 350px;
height: 45px;
background-color: #2929cc;
border-radius: 50px;
font-weight: 300;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
color: #fff;
font-size: 20px;
margin: 10px;
outline: none;
border-color: transparent;
cursor: pointer;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment