27 lines
510 B
SCSS
27 lines
510 B
SCSS
|
@import './variables';
|
||
|
|
||
|
.input{
|
||
|
background-color: lighten($color: $background-dark, $amount: 5);
|
||
|
color: #d4dcff;
|
||
|
border: 1px solid $border;
|
||
|
padding: 12px 8px;
|
||
|
width: 100%;
|
||
|
&:focus{
|
||
|
outline: none;
|
||
|
border: $contrast 1px solid;
|
||
|
box-shadow: 0 0 0 3px $background-light;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.password-toggler {
|
||
|
position: absolute;
|
||
|
top: 50%;
|
||
|
transform: translate(-50%, -50%);
|
||
|
right: 0;
|
||
|
width: 20px;
|
||
|
height: 20px;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
.container{
|
||
|
position: relative;
|
||
|
}
|