-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
118 lines (100 loc) · 1.73 KB
/
popup.css
File metadata and controls
118 lines (100 loc) · 1.73 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
@import url("https://fonts.googleapis.com/css2?family=Literata:wght@400;600;700&display=swap");
:root {
color-scheme: light;
--ink: #1c1c1c;
--accent: #f7b733;
--accent-dark: #d88000;
--paper: #fff7e6;
--panel: #fff;
--border: rgba(0, 0, 0, 0.12);
}
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: "Literata", serif;
color: var(--ink);
background: radial-gradient(circle at top, #fff3c2, #f8efe5 55%, #f2e7dc 100%);
width: 320px;
padding: 16px;
}
header {
margin-bottom: 12px;
}
h1 {
font-size: 20px;
margin: 0 0 4px;
}
p {
margin: 0;
font-size: 12px;
color: rgba(0, 0, 0, 0.6);
}
h2 {
font-size: 14px;
margin: 14px 0 8px;
}
input[type="text"] {
width: 100%;
padding: 8px 10px;
border-radius: 10px;
border: 1px solid var(--border);
background: #fff;
}
.tag-suggestions {
display: flex;
flex-wrap: wrap;
gap: 6px;
margin-top: 8px;
}
.tag-suggestion {
border: 1px solid var(--border);
background: #fff;
border-radius: 999px;
padding: 4px 10px;
font-size: 12px;
cursor: pointer;
}
.actions {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px;
}
button {
border: none;
border-radius: 10px;
padding: 8px 10px;
background: var(--accent);
color: #1b1b1b;
cursor: pointer;
font-weight: 600;
}
button.secondary {
background: transparent;
border: 1px solid var(--border);
}
.list {
display: grid;
gap: 8px;
}
.card {
background: var(--panel);
border-radius: 10px;
padding: 10px;
border: 1px solid var(--border);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}
.card strong {
display: block;
font-size: 12px;
margin-bottom: 4px;
}
.card p {
font-size: 12px;
margin: 0;
}
.meta {
font-size: 11px;
color: rgba(0, 0, 0, 0.6);
}