2017-06-13 17:46:08 +02:00
|
|
|
@import "colors";
|
2017-09-07 18:06:24 +02:00
|
|
|
@import "constants";
|
2017-06-13 17:46:08 +02:00
|
|
|
@import "placeholders";
|
2017-06-14 18:21:24 +02:00
|
|
|
@import "mixins";
|
2017-06-13 17:46:08 +02:00
|
|
|
|
2019-04-01 15:03:13 +02:00
|
|
|
#auth {
|
|
|
|
// On small screens, hide the procedure description text on auth pages.
|
|
|
|
// It avoids pushing the sign-in/sign-up form out of the viewport.
|
|
|
|
//
|
|
|
|
// The procedure description can still be read from the /commencer
|
|
|
|
// pages.
|
|
|
|
@media (max-width: $two-columns-breakpoint) {
|
|
|
|
.procedure-description {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-21 17:36:27 +02:00
|
|
|
.auth-form {
|
2017-10-19 16:04:45 +02:00
|
|
|
.auth-options {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin-bottom: 4 * $default-spacer;
|
2017-09-07 18:06:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.remember-me {
|
|
|
|
display: inline-block;
|
2017-10-19 16:04:45 +02:00
|
|
|
margin-bottom: 0;
|
2017-06-13 17:46:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
2018-10-11 10:24:11 +02:00
|
|
|
margin-top: 30px;
|
|
|
|
margin-bottom: 30px;
|
2017-06-13 17:46:08 +02:00
|
|
|
background-color: $grey;
|
|
|
|
border: none;
|
|
|
|
height: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.register {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
span {
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
2018-06-19 17:18:38 +02:00
|
|
|
|
|
|
|
.auth-signup-button {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2017-06-13 17:46:08 +02:00
|
|
|
}
|
2018-06-19 16:23:43 +02:00
|
|
|
|
2017-10-19 16:04:45 +02:00
|
|
|
.sign-in-form .form {
|
|
|
|
input[type="password"] {
|
|
|
|
margin-bottom: $default-spacer;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type="checkbox"] {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|