-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
57 lines (50 loc) · 826 Bytes
/
popup.css
File metadata and controls
57 lines (50 loc) · 826 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
46
47
48
49
50
51
52
53
54
55
56
57
h1 {
font-size: 1.2rem;
margin-bottom: 10px;
text-align: center;
}
#memories-list {
list-style: none;
padding: 0;
margin: 0;
max-height: 400px;
overflow-y: auto;
}
.memory-item {
position: relative;
background: #f9f9f9;
margin: 6px 0;
padding: 8px 12px;
border-radius: 10px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.memory-header {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.8rem;
color: #666;
}
.memory-text {
margin: 6px 0;
font-size: 0.9rem;
}
.memory-tags {
display: flex;
flex-wrap: wrap;
gap: 4px;
}
.tag {
background: #e3e3ff;
color: #333;
padding: 2px 6px;
border-radius: 6px;
font-size: 0.75rem;
}
.delete-btn {
border: none;
background: transparent;
color: #c00;
font-size: 1rem;
cursor: pointer;
}