demarches-normaliennes/app/assets/stylesheets/auth.scss

89 lines
1.4 KiB
SCSS
Raw Normal View History

2017-06-13 17:46:08 +02:00
@import "colors";
@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
#auth,
#agentconnect {
// 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-preview,
.agent-intro {
display: none;
}
}
.column {
2022-03-02 14:26:24 +01:00
padding-top: $default-spacer;
}
h1 {
margin-bottom: $default-spacer;
}
.form label {
margin-bottom: $default-spacer / 2;
}
}
.auth-form {
.auth-options {
display: flex;
justify-content: space-between;
2022-03-02 14:26:24 +01:00
margin-bottom: 2 * $default-spacer;
}
.remember-me {
display: inline-block;
margin-bottom: 0;
2017-06-13 17:46:08 +02:00
}
hr {
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;
}
}
.auth-signup-button {
white-space: nowrap;
}
2017-06-13 17:46:08 +02:00
}
.sign-in-form .form {
input[type="email"] {
2022-03-02 14:26:24 +01:00
margin-bottom: $default-spacer;
}
input[type="password"] {
margin-bottom: $default-spacer;
}
input[type="checkbox"] {
margin-bottom: 0;
}
}
#session-new {
.important-header {
font-weight: bold;
font-size: 18px;
}
}