Skip to content

Instantly share code, notes, and snippets.

@sfmskywalker
Created November 2, 2019 08:47
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 sfmskywalker/c3a6d8e9fbdceeb33af57d5c1b438e4f to your computer and use it in GitHub Desktop.
Save sfmskywalker/c3a6d8e9fbdceeb33af57d5c1b438e4f to your computer and use it in GitHub Desktop.
site.css - Building Workflow Driven .NET Core Applications with Elsa
html,
body, app {
height: 100%;
}
app {
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
padding-top: 40px;
padding-bottom: 40px;
background-color: #f5f5f5;
}
.form-signup {
width: 100%;
max-width: 500px;
padding: 15px;
margin: auto;
}
.form-signup .form-control {
position: relative;
box-sizing: border-box;
height: auto;
padding: 10px;
font-size: 16px;
}
.form-signup .form-control:focus {
z-index: 2;
}
.form-signup input#name {
margin-bottom: -2px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.form-signup input#email,
.form-signup input#password {
margin-bottom: -2px;
margin-top: -1px;
border-radius: 0;
}
.form-signup input#repeatPassword {
margin-bottom: 10px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
ul.validation-errors {
text-align: left;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment