-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
100 lines (86 loc) · 1.43 KB
/
popup.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
93
94
95
96
97
98
99
100
:root {
--accent-color: #002E94;
--bg-color: #FFFFFF;
--text-primary-color: #000000;
--text-accent-color: #FFFFFF;
--error-color: #E51C23;
}
@media (prefers-color-scheme: dark) {
body {
--accent-color: #395B64;
--bg-color: #2C3333;
--text-primary-color: #A5C9CA;
--text-accent-color: #E7F6F2;
}
}
body, input, select {
font-family: Verdana, arial;
font-size: 12pt;
}
body {
min-width: 450px;
padding: 0;
margin: 0;
color: var(--text-primary-color);
background-color: var(--bg-color);
}
h1 {
margin: 0 0 .5em 0;
color: var(--text-accent-color);
background-color: var(--accent-color);
padding: .5em;
font-size: 1.5em;
text-align: center;
}
label {
display: inline-block;
width: 50px;
text-align: right;
margin-right: .5em;
clear: left;
}
label.checkbox {
text-align: left;
width: 300px;
margin-left: .2em;
margin-right: 0;
}
.nav {
margin-top: .5em;
clear: left;
}
input[type=submit] {
margin-left: 63px;
padding: 6px;
font-size: 1.2em;
color: var(--accent-color);
cursor: pointer;
}
#download-button {
margin-left: 0;
font-size: 1em;
margin-bottom: 1em;
}
#download {
margin-top: 1em;
clear: both;
text-align: center;
}
#result {
background-color: #FFF;
color: #000;
padding: .5em;
text-align: center;
display: inline;
}
#resultWrapper {
display: flex;
justify-content: center;
align-items: center;
}
.error {
color: var(--error-color);
font-weight: bold;
padding: .5em;
text-align: center;
}