47 lines
895 B
SCSS
Vendored
47 lines
895 B
SCSS
Vendored
.strengthify-wrapper > * {
|
|
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
|
|
filter: alpha(opacity=0);
|
|
opacity: 0;
|
|
-webkit-transition:all .5s ease-in-out;
|
|
-moz-transition:all .5s ease-in-out;
|
|
transition:all .5s ease-in-out;
|
|
}
|
|
|
|
.strengthify-wrapper {
|
|
position: relative;
|
|
}
|
|
|
|
.strengthify-bg, .strengthify-container, .strengthify-wrapper, .strengthify-separator {
|
|
height: 8px;
|
|
}
|
|
|
|
.strengthify-bg, .strengthify-container {
|
|
display: block;
|
|
position: absolute;
|
|
width: 100%;
|
|
}
|
|
|
|
.strengthify-bg {
|
|
background-color: #eeeeee;
|
|
}
|
|
|
|
.strengthify-separator {
|
|
display: inline-block;
|
|
position: absolute;
|
|
background-color: #ffffff;
|
|
width: 2px;
|
|
z-index: 10;
|
|
}
|
|
|
|
.password-bad {
|
|
background-color: $cachet-red;
|
|
}
|
|
|
|
.password-medium {
|
|
background-color: $cachet-yellow;
|
|
}
|
|
|
|
.password-good {
|
|
background-color: $cachet-green;
|
|
}
|