72 lines
1.3 KiB
SCSS
72 lines
1.3 KiB
SCSS
|
|
|
|
.login-main {
|
|
//@include table-flex(center, center, flex, row, wrap, center);
|
|
@include display(flex);
|
|
@include align-items(center);
|
|
@include flex-direction(row);
|
|
@include justify-content(center);
|
|
@extend %triangled-bg;
|
|
bottom: 0;
|
|
left: 0;
|
|
position: fixed;
|
|
right: 0;
|
|
top: 0;
|
|
z-index: 999;
|
|
fieldset {
|
|
margin-bottom: 1rem;
|
|
}
|
|
.login-container {
|
|
@include flex-basis(400px);
|
|
}
|
|
.logo,
|
|
.tagline {
|
|
margin-bottom: 1rem;
|
|
text-align: center;
|
|
}
|
|
.tagline {
|
|
@extend %xlarge;
|
|
@extend %title;
|
|
color: $white;
|
|
line-height: 2rem;
|
|
text-transform: uppercase;
|
|
}
|
|
form {
|
|
margin-bottom: 2rem;
|
|
}
|
|
input {
|
|
background: $white;
|
|
@include placeholder {
|
|
color: $gray-light;
|
|
}
|
|
}
|
|
.login-text,
|
|
.register-text {
|
|
text-align: center;
|
|
a:hover {
|
|
color: $fresh-taiga;
|
|
}
|
|
}
|
|
.button {
|
|
color: $white;
|
|
display: block;
|
|
margin-bottom: .5rem;
|
|
text-align: center;
|
|
&:hover {
|
|
background: $fresh-taiga;
|
|
}
|
|
}
|
|
a {
|
|
&:hover {
|
|
color: $white;
|
|
}
|
|
}
|
|
.checksley-error-list {
|
|
right: 1rem;
|
|
+.forgot-pass {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|