2018-09-26 08:56:53 +02:00
|
|
|
@import "colors";
|
|
|
|
@import "constants";
|
|
|
|
|
|
|
|
$strength-bg: #EEEEEE;
|
2019-06-20 00:32:01 +02:00
|
|
|
$strength-color-0: $lighter-red;
|
|
|
|
$strength-color-1: #FF5000;
|
|
|
|
$strength-color-2: $orange;
|
|
|
|
$strength-color-3: #FFD000;
|
|
|
|
$strength-color-4: $green;
|
2018-09-26 08:56:53 +02:00
|
|
|
|
|
|
|
.password-strength {
|
|
|
|
margin-top: -24px;
|
|
|
|
width: 100%;
|
2019-06-20 00:32:01 +02:00
|
|
|
height: 12px;
|
2018-09-26 08:56:53 +02:00
|
|
|
background: $strength-bg;
|
|
|
|
display: block;
|
|
|
|
margin-bottom: $default-spacer;
|
|
|
|
text-align: center;
|
2019-06-20 00:32:01 +02:00
|
|
|
border-radius: 8px;
|
|
|
|
|
|
|
|
&.strength-0 {
|
|
|
|
background: linear-gradient(to right, $strength-color-0 00%, $strength-bg 20%);
|
|
|
|
}
|
2018-09-26 08:56:53 +02:00
|
|
|
|
|
|
|
&.strength-1 {
|
2019-06-20 00:32:01 +02:00
|
|
|
background: linear-gradient(to right, $strength-color-1 20%, $strength-bg 40%);
|
2018-09-26 08:56:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&.strength-2 {
|
2019-06-20 00:32:01 +02:00
|
|
|
background: linear-gradient(to right, $strength-color-2 40%, $strength-bg 60%);
|
2018-09-26 08:56:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&.strength-3 {
|
2019-06-20 00:32:01 +02:00
|
|
|
background: linear-gradient(to right, $strength-color-3 60%, $strength-bg 80%);
|
2018-09-26 08:56:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&.strength-4 {
|
2019-06-20 00:32:01 +02:00
|
|
|
background: $strength-color-4;
|
2018-09-26 08:56:53 +02:00
|
|
|
}
|
|
|
|
}
|