-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.css
More file actions
121 lines (106 loc) · 2.37 KB
/
popup.css
File metadata and controls
121 lines (106 loc) · 2.37 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
119
120
121
html, body {
min-width: 320px;
margin: 0;
padding: 0;
font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
background: #f5f7fb;
color: #0f172a;
}
.container {
padding: 16px;
box-sizing: border-box;
}
#titleContainer {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 12px;
}
.title {
font-size: 18px;
color: #0f172a;
letter-spacing: 0.2px;
margin: 0;
}
#expCnt {
display: flex;
justify-content: center;
align-items: center;
padding: 10px 12px;
margin-bottom: 14px;
background: #ffffff;
border: 1px solid #e2e8f0;
border-radius: 10px;
box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}
#expCnt a {
color: #1d4ed8;
font-weight: 600;
text-decoration: none;
padding: 8px 12px;
border: 1px solid #c7d2fe;
border-radius: 8px;
background: #eef2ff;
transition: background 120ms ease, border-color 120ms ease, transform 120ms ease;
}
#expCnt a:hover {
background: #e0e7ff;
border-color: #a5b4fc;
transform: translateY(-1px);
}
#expCnt a:active {
transform: translateY(0);
}
.bookmarks-list {
display: flex;
flex-direction: column;
gap: 10px;
max-height: 360px;
overflow-y: auto;
}
.bookmark {
display: grid;
grid-template-columns: 1fr auto auto;
align-items: center;
column-gap: 10px;
padding: 12px 10px;
background: #ffffff;
border: 1px solid #e2e8f0;
border-radius: 10px;
box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}
.bookmark:hover {
transform: translateY(-1px);
border-color: #cbd5e1;
box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}
.bookmark a {
color: #1d4ed8;
text-decoration: none;
font-weight: 600;
font-size: 14px;
line-height: 1.4;
word-break: break-word;
}
.bookmark a:hover {
text-decoration: underline;
}
.bookmark img {
width: 20px;
height: 20px;
padding: 6px;
border-radius: 8px;
cursor: pointer;
background: #f8fafc;
border: 1px solid #e2e8f0;
transition: background 120ms ease, border-color 120ms ease, transform 120ms ease;
}
.bookmark img:hover {
background: #eef2ff;
border-color: #c7d2fe;
transform: translateY(-1px);
}
.bookmark img:active {
transform: translateY(0);
}