-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpasswordStrengthBar.css
More file actions
73 lines (60 loc) · 880 Bytes
/
passwordStrengthBar.css
File metadata and controls
73 lines (60 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
body {
font-family: helvetica;
}
.hidden {
display: none;
}
#password_strength {
font-family: arial;
font-weight: bold;
font-size: 12pt;
width: 135px;
height: 45px;
position: absolute;
padding: 5px;
overflow: hidden;
}
.bar {
margin-top: 24px;
position: absolute;
z-index: 3;
height: 6px;
overflow: hidden;
}
.meter {
font-size: 5px;
white-space: nowrap;
}
.invalid .bar {
background-color: red;
color: red;
width: 140px;
}
.none .bar {
background-color: #222;
color: #222;
}
.weak .bar {
background-color: red;
color: red;
}
.good .bar {
background-color: #EF802C;
color: #EF802C;
}
.strong .bar {
background-color: #008F28;
color: #008F28;
}
.very_strong .bar {
background-color: #06F;
color: #06F;
}
.score {
font-size: 0px;
}
.message {
z-index: 2;
position: absolute;
padding: 5px 5px 5px 0;
}