-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
92 lines (71 loc) · 1.3 KB
/
styles.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
html {
font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
color-scheme: light dark;
}
body {
margin: 4em 2em 6em;
}
.upload-wrapper {
display: block;
max-width: 60ch;
}
.upload {
padding: 4em 2em;
border-width: 2px;
border-style: dashed;
border-radius: 8px;
text-align: center;
}
#file-upload {
display: none;
}
.output {
margin: 4rem 0 6rem;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
grid-gap: 2rem;
}
.otp {
flex: 10rem 20rem 1;
}
.otp__name {
font-size: 1.125rem;
font-weight: 800;
}
.otp__secret {
font-family: Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace;
}
.otp__link {
font-family: Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace;
}
.otp__copied {
font-size: 0.875rem;
}
.otp__qr-code_wrapper {
display: block;
overflow: hidden;
border-radius: 0.5rem;
}
.otp__qr-code {
display: block;
filter: blur(0.75rem);
transition: 0.2s filter;
}
.otp__qr-code--show {
filter: blur(0);
transition: 0.4s filter;
}
details {
margin: 1rem 0;
}
summary {
font-weight: 800;
cursor: pointer;
}
dt {
font-weight: 800;
}
dd {
word-break: break-all;
user-select: all;
}