2017-01-23 21:07:22 -05:00
|
|
|
.login {
|
|
|
|
height: 100vh;
|
2018-03-21 14:09:23 -04:00
|
|
|
padding: 1.5rem;
|
2017-01-23 21:07:22 -05:00
|
|
|
text-align: center;
|
2018-03-21 14:09:23 -04:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2017-01-23 21:07:22 -05:00
|
|
|
}
|
|
|
|
|
2018-03-21 14:09:23 -04:00
|
|
|
.login__inner {
|
|
|
|
max-width: 400px;
|
|
|
|
width: 90%;
|
|
|
|
flex-shrink: 0;
|
2017-01-23 21:07:22 -05:00
|
|
|
}
|
|
|
|
|
2018-03-21 14:09:23 -04:00
|
|
|
.login__header {
|
|
|
|
margin-bottom: 1rem;
|
2017-01-23 21:07:22 -05:00
|
|
|
}
|
|
|
|
|
2018-03-21 14:09:23 -04:00
|
|
|
.login__form {
|
|
|
|
background-color: @white;
|
|
|
|
padding: 2rem;
|
2017-01-23 21:07:22 -05:00
|
|
|
|
2018-03-21 14:09:23 -04:00
|
|
|
.form-group__field {
|
|
|
|
text-align: center;
|
2017-01-23 21:07:22 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-21 14:09:23 -04:00
|
|
|
.login__logo {
|
|
|
|
width: 2rem;
|
2017-01-23 21:07:22 -05:00
|
|
|
}
|
|
|
|
|
2018-03-21 14:09:23 -04:00
|
|
|
.login__host {
|
|
|
|
color: @text-muted-color;
|
|
|
|
margin-top: -0.5rem;
|
|
|
|
font-size: @font-size-small;
|
2017-01-23 21:07:22 -05:00
|
|
|
}
|
|
|
|
|
2018-03-21 14:09:23 -04:00
|
|
|
.login__btn {
|
|
|
|
margin-top: 0.5rem;
|
|
|
|
width: 2.6rem;
|
|
|
|
height: 2.6rem;
|
|
|
|
line-height: 100%;
|
2017-01-23 21:07:22 -05:00
|
|
|
border-radius: 50%;
|
|
|
|
background-color: transparent;
|
2018-03-21 14:09:23 -04:00
|
|
|
border: 1px solid darken(@input-border-color, 5%);
|
|
|
|
.transition(all);
|
|
|
|
.transition-duration(500ms);
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
|
2017-01-23 21:07:22 -05:00
|
|
|
&:hover {
|
2018-03-21 14:09:23 -04:00
|
|
|
border-color: darken(@input-border-color, 15%);
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
left: 2.6rem;
|
|
|
|
.opacity(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
.opacity(1);
|
|
|
|
left: 0;
|
|
|
|
}
|
2017-01-23 21:07:22 -05:00
|
|
|
}
|
|
|
|
|
2018-03-21 14:09:23 -04:00
|
|
|
&:before,
|
|
|
|
&:after {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
content: '\f301';
|
|
|
|
font-family: @font-family-icon;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
2017-01-23 21:07:22 -05:00
|
|
|
width: 100%;
|
2018-03-21 14:09:23 -04:00
|
|
|
height: 100%;
|
|
|
|
.transition(all);
|
|
|
|
.transition-duration(300ms);
|
2017-01-23 21:07:22 -05:00
|
|
|
}
|
|
|
|
|
2018-03-21 14:09:23 -04:00
|
|
|
&:after {
|
|
|
|
left: -2.6rem;
|
|
|
|
.opacity(0);
|
|
|
|
}
|
2017-01-23 21:07:22 -05:00
|
|
|
}
|