-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
118 lines (100 loc) · 1.75 KB
/
Copy pathstyle.css
File metadata and controls
118 lines (100 loc) · 1.75 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
:root {
color-scheme: light;
font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
line-height: 1.4;
font-weight: 400;
color: #10141f;
background:
radial-gradient(circle at top left, #ffe5c4 0, transparent 36%),
linear-gradient(160deg, #fffaf4 0%, #f0f4ff 100%);
}
* {
box-sizing: border-box;
}
body {
margin: 0;
min-width: 320px;
}
.popup-shell {
padding: 18px;
}
.popup-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.github-link {
color: #4b5566;
transition: color 0.15s;
}
.github-link:hover {
color: #10141f;
}
.eyebrow {
margin: 0 0 8px;
color: #7f4f24;
font-size: 12px;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
}
h1 {
margin: 0 0 18px;
font-size: 20px;
line-height: 1.2;
}
.toggle-card {
display: grid;
grid-template-columns: 1fr auto;
gap: 16px;
align-items: center;
padding: 14px 16px;
border: 1px solid rgba(16, 20, 31, 0.1);
border-radius: 16px;
background: rgba(255, 255, 255, 0.72);
box-shadow: 0 12px 24px rgba(26, 35, 52, 0.08);
}
.toggle-label {
display: block;
font-size: 15px;
font-weight: 600;
}
.toggle-copy {
margin: 6px 0 0;
color: #4b5566;
font-size: 13px;
}
input[type="checkbox"] {
width: 42px;
height: 24px;
accent-color: #0f766e;
}
.meta-list {
margin: 16px 0 0;
padding: 0;
display: grid;
gap: 12px;
}
.meta-list div {
display: flex;
justify-content: space-between;
gap: 16px;
padding: 10px 0;
border-bottom: 1px solid rgba(16, 20, 31, 0.08);
}
.meta-list dt {
color: #4b5566;
}
.meta-list dd {
margin: 0;
font-weight: 600;
text-align: right;
}
.meta-list select {
min-width: 180px;
max-width: 220px;
width: 100%;
}
.hidden {
display: none !important;
}