-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstylesheet.css
55 lines (47 loc) · 861 Bytes
/
stylesheet.css
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
.pwCalc .pwd {
font-family: monospace;
padding-top: 10px;
text-align: center;
font-size: 127%;
}
.pwCalcSuggestion {
background-color: rgba(0,5,15,0.20);
color:white;
margin-left:12px;
margin-right:12px;
box-shadow: inset 7px 0 4px -7px rgba(0,0,0,0.4);
border:1px solid black;
border-top:0;
border-bottom:0;
border-radius:0;
border-color:#222;
}
.pwCalcSuggestion:focus,
.pwCalcSuggestion:hover {
background-color: rgba(255,255,255,0.07);
}
.pwCalc .heading {
text-align: center;
padding-bottom: 12px;
}
.pwCalc {
padding:0px 12px;
}
.pwCalc .last {
border-radius:0px 0px 8px 8px;
border-color: #222;
border-width: 1px;
margin:0;
}
.pwCalc .last:focus {
border-color:#215d9c;
}
.pwCalc .first:focus {
border-color:#215d9c;
}
.pwCalc .first {
border-radius:8px 8px 0px 0px;
border-color: #222;
border-width: 1px;
margin:0;
}