-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
112 lines (97 loc) · 1.74 KB
/
Copy pathstyles.css
File metadata and controls
112 lines (97 loc) · 1.74 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
:root {
color-scheme: light;
--bg: #f4efe6;
--card: #fffaf1;
--text: #1f2a24;
--muted: #5f6f66;
--accent: #0f8a5f;
--accent-dark: #0b6a49;
--border: #d4cdbf;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
width: 340px;
background:
radial-gradient(circle at 10% 10%, #fff6de, transparent 40%),
radial-gradient(circle at 90% 90%, #dff6e9, transparent 35%),
var(--bg);
color: var(--text);
font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
}
.popup {
padding: 14px;
}
h1 {
margin: 0 0 12px;
font-size: 18px;
letter-spacing: 0.2px;
}
.card {
background: var(--card);
border: 1px solid var(--border);
border-radius: 10px;
padding: 10px;
margin-bottom: 10px;
}
.toggle-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
}
.toggle-label {
font-weight: 700;
}
.status {
margin: 8px 0 0;
color: var(--muted);
font-size: 13px;
}
label {
display: block;
margin-bottom: 4px;
font-size: 13px;
font-weight: 600;
}
input[type="number"] {
width: 100%;
border: 1px solid var(--border);
border-radius: 8px;
padding: 8px;
font-size: 14px;
background: #fff;
color: var(--text);
}
input[type="checkbox"] {
width: 42px;
height: 22px;
accent-color: var(--accent);
}
.small-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
}
.primary-btn {
width: 100%;
border: 0;
border-radius: 9px;
padding: 10px;
background: linear-gradient(180deg, var(--accent), var(--accent-dark));
color: #fff;
font-weight: 700;
cursor: pointer;
}
.primary-btn:hover {
filter: brightness(1.05);
}
.save-status {
min-height: 18px;
margin: 8px 0 0;
font-size: 13px;
color: var(--accent-dark);
font-weight: 600;
}