scinote-web/app/assets/stylesheets/sign_up.scss

62 lines
1,003 B
SCSS
Raw Normal View History

2020-03-27 16:43:49 +08:00
// scss-lint:disable SelectorDepth NestingDepth IdSelector
.sign-up-layout {
#content-wrapper {
margin-left: 0;
.container:first-child {
padding: 0;
}
}
.sign-up-container {
display: flex;
.sign-up-form-wrapper {
flex-basis: 50%;
flex-grow: 1;
.center-block-narrow {
margin-top: 72px;
padding: 0 50px;
}
.sign-up-title {
margin-bottom: 24px;
}
.sci-input-container:not(.field_with_errors) {
2020-03-27 16:43:49 +08:00
margin-bottom: 24px;
2020-03-27 17:34:06 +08:00
.minimum-password-length {
@include font-small;
}
2020-03-27 16:43:49 +08:00
}
.sign-up-button {
padding: 7px 32px;
}
.linkedin-container {
margin-bottom: 24px;
.linkedin-link {
margin-right: 15px;
2020-03-27 17:34:06 +08:00
&:hover {
text-decoration: none;
}
2020-03-27 16:43:49 +08:00
}
.linkedin-signin-button {
margin: 0;
}
span {
font-weight: bold;
}
}
}
}
}