-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
45 lines (40 loc) · 706 Bytes
/
Copy pathpopup.css
File metadata and controls
45 lines (40 loc) · 706 Bytes
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
body {
font-family: Arial, sans-serif;
padding: 10px;
min-width: 300px;
background: #f8f9fa;
}
h2 {
font-size: 16px;
margin-bottom: 10px;
}
.item {
border: 1px solid #ddd;
border-radius: 4px;
background: #fff;
margin-bottom: 5px;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 5px 10px;
cursor: pointer;
font-weight: bold;
background: #e9ecef;
border-radius: 4px 4px 0 0;
}
.header svg {
width: 12px;
height: 12px;
transition: transform 0.2s;
}
.value {
display: none;
padding: 5px 10px;
white-space: pre-wrap;
font-family: monospace;
font-size: 13px;
background: #f1f3f5;
border-radius: 0 0 4px 4px;
}