-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
70 lines (57 loc) · 1.05 KB
/
index.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
input {
height: 23px;
}
#options, #output {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
#options .option, #password {
display: flex;
flex-direction: column;
margin: 0.5em;
}
#options .option label, #password label {
padding-left: 0.1em;
margin-bottom: 0.25em;
}
#options .option > span, #output span {
display: flex;
flex-direction: row;
align-items: center;
}
#output {
margin: 0.5em 0;
}
#limit-input {
width: 6ch;
}
#remember-secret label {
font-size: 0.8em;
}
#charset.option {
display: grid;
grid-auto-flow: column;
grid-template-rows: 1fr 1fr;
justify-items: center;
}
#charset.option > span {
margin: 0.125em;
}
#charset.option input[type="checkbox"] {
display: none;
}
#charset.option label {
background-color: whitesmoke;
border-color: grey;
border-style: solid;
border-width: 1px;
margin: 0;
padding: 0.2em;
}
#charset.option input:not(:checked) + label {
text-decoration: line-through;
}
#password-input {
width: 44ch;
}