-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidepanel.css
More file actions
111 lines (96 loc) · 1.56 KB
/
Copy pathsidepanel.css
File metadata and controls
111 lines (96 loc) · 1.56 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
:root {
color-scheme: light dark;
--bg: #0b0c10;
--card: #111218;
--text: #e8e8ea;
--muted: #a9a9b2;
--border: rgba(255, 255, 255, 0.08);
}
body {
margin: 0;
font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
background: var(--bg);
color: var(--text);
}
#app {
padding: 14px;
display: flex;
flex-direction: column;
gap: 12px;
}
.header {
display: flex;
align-items: center;
justify-content: space-between;
}
.brand {
font-weight: 700;
font-size: 16px;
}
.sub {
color: var(--muted);
font-size: 12px;
margin-top: 2px;
}
.card {
border: 1px solid var(--border);
background: var(--card);
border-radius: 12px;
padding: 12px;
}
.label {
color: var(--muted);
font-size: 12px;
margin-bottom: 6px;
}
.title {
font-size: 14px;
font-weight: 600;
margin-bottom: 6px;
}
.link {
font-size: 12px;
color: #7aa2ff;
word-break: break-all;
display: inline-block;
}
.ladder {
margin: 0;
padding-left: 18px;
color: var(--muted);
font-size: 13px;
}
.btn {
margin-top: 10px;
width: 100%;
border: 1px solid var(--border);
background: transparent;
color: var(--text);
padding: 10px;
border-radius: 10px;
cursor: pointer;
}
.hint {
margin-top: 10px;
font-size: 13px;
color: var(--text);
padding: 10px;
border-radius: 10px;
border: 1px dashed var(--border);
min-height: 38px;
}
.btnRow {
display: flex;
gap: 8px;
margin-top: 8px;
}
.btn.small {
padding: 8px;
border-radius: 10px;
flex: 1;
}
.sub {
color: var(--muted);
font-size: 12px;
margin-top: 2px;
}