-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
102 lines (88 loc) · 1.93 KB
/
Copy pathpopup.css
File metadata and controls
102 lines (88 loc) · 1.93 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
:root {
/* Olive Design System Colors */
--olive-50: #f7f7f5;
--olive-100: #f3f3f0;
--olive-200: #e8e8e2;
--olive-300: #d8d8cf;
--olive-400: #abab9c;
--olive-500: #7b7b66;
--olive-600: #5a5a4a;
--olive-700: #474738;
--olive-800: #2b2b21;
--olive-900: #191913;
--olive-950: #0b0b09;
/* Typography */
--font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
--font-display: "Playfair Display", "Noto Serif SC", "Times New Roman", Times, serif;
}
* {
box-sizing: border-box;
}
::selection {
background-color: rgba(216, 216, 207, 0.6); /* olive-300/60 */
}
body {
margin: 0;
min-width: 320px;
font-family: var(--font-sans);
background: var(--olive-100);
color: var(--olive-950);
-webkit-font-smoothing: antialiased;
}
.panel {
padding: 20px 24px;
}
.title {
margin: 0;
font-family: var(--font-display);
font-size: 18px;
font-weight: 700;
color: var(--olive-950);
letter-spacing: -0.02em;
}
.desc {
margin: 10px 0 16px;
font-size: 13px;
line-height: 1.6;
color: var(--olive-500);
}
.btn {
width: 100%;
display: inline-flex;
align-items: center;
justify-content: center;
border: none;
border-radius: 8px;
padding: 10px 16px;
background: var(--olive-950);
color: white;
cursor: pointer;
font-family: var(--font-display);
font-size: 14px;
font-weight: 600;
transition: background-color 0.2s, transform 0.1s;
}
.btn:hover {
background: var(--olive-800);
}
.btn:active {
transform: scale(0.98);
}
.btn:disabled {
opacity: 0.3;
pointer-events: none;
}
.status {
margin: 12px 0 0;
font-size: 12px;
color: var(--olive-600);
min-height: 18px;
text-align: center;
}
.status.error {
color: #cf1322;
}
.status.success {
color: var(--olive-700);
font-weight: 500;
}