-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.css
84 lines (71 loc) · 1.17 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
body {
width: 350px;
margin: 0;
padding: 0;
overflow-x: hidden;
font-size: 16px;
word-break: keep-all;
color: #2c2c2c;
background-color: #f5f5f5;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
}
label {
flex-grow: 1;
}
label[title] {
cursor: help;
}
label:has(+ input[type="range"]) {
flex-grow: 0;
}
input[type="range"] {
flex-grow: 1;
margin: 2px 10px;
}
footer {
font-size: 0.75rem;
margin: 0.75rem;
text-align: center;
color: #9ca3af;
}
footer a {
text-decoration: none;
color: #0ea5e9;
}
svg {
display: inline-block;
width: 0.75rem;
height: 0.75rem;
margin-left: 0.25rem;
}
summary {
margin-bottom: 0.25rem;
cursor: pointer;
}
.box {
border: 1px solid black;
border-radius: 0.5rem;
padding: 0.5rem 1rem;
margin: 0.75rem;
}
.box a {
text-decoration: none;
font-weight: bold;
color: inherit;
}
.title {
font-weight: bold;
margin-bottom: 0.5rem;
}
.row {
display: flex;
margin-bottom: 0.25rem;
}
.desc {
margin-bottom: 0.25rem;
font-size: 13px;
color: gray;
word-break: normal;
}