-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathhsimp.css
More file actions
52 lines (45 loc) · 1.03 KB
/
hsimp.css
File metadata and controls
52 lines (45 loc) · 1.03 KB
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
/**
* hsimp - How Secure is My Password
* @license MIT
* @copyright Mark Nicholas Wales / Small Hadron Collider
* @link https://github.com/howsecureismypassword/hsimp#license
*/
body {
font-family: sans-serif;
font-size: 1em;
font-weight: 300;
}
input {
font-family: sans-serif;
font-size: 2em;
font-weight: 300;
color: #888;
border: 1px solid #bbb;
border-radius: 3px;
padding: 0.25em 10px;
line-height: 1.5em;
width: 800px;
height: 80px;
}
label::after {
content: ":";
}
div {
margin-bottom: 10px;
}
.hsimp-time {
display: inline;
margin-left: 10px;
}
.hsimp-checks li {
list-style: none;
}
.hsimp-checks h2 {
font-size: 2em;
margin-bottom: 0;
}
.hsimp-checks p {
margin-top: 0;
font-size: 1em;
}
.hsimp-level{color:#fff;color:rgba(255,255,255,0.9);transition:background .5s linear;background-color:#fff}.hsimp-level--bad,.hsimp-level--insecure{background-color:#c63136}.hsimp-level--ok{background-color:#de7b46}.hsimp-level--good{background-color:#2f8249}