-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
152 lines (139 loc) · 3.33 KB
/
Copy pathstyles.css
File metadata and controls
152 lines (139 loc) · 3.33 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
:root {
--bg: #0f1115;
--panel: #171a21;
--line: #262b36;
--ink: #e8eaed;
--muted: #9aa3b2;
--accent: #d7e34a;
--paper: #f4f3ec; /* warm e-ink paper tint */
}
* { box-sizing: border-box; }
#errbar {
display: none;
background: #5a1d1d;
color: #ffd9d9;
border-bottom: 1px solid #843;
font-family: ui-monospace, monospace;
font-size: 13px;
padding: 10px 16px;
}
body {
margin: 0;
font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
background: radial-gradient(1200px 800px at 70% -10%, #1b2030, var(--bg));
color: var(--ink);
min-height: 100vh;
}
.topbar {
padding: 18px 24px;
border-bottom: 1px solid var(--line);
}
.brand {
font-family: ui-monospace, monospace;
font-weight: 700;
letter-spacing: 0.18em;
font-size: 14px;
}
.brand .sub {
color: var(--muted);
font-weight: 400;
letter-spacing: 0.04em;
margin-left: 10px;
}
.hint { color: var(--muted); font-size: 12px; margin-top: 6px; max-width: 720px; }
.hint code { color: var(--accent); }
.stage {
display: grid;
grid-template-columns: 1fr 280px;
gap: 28px;
padding: 28px 24px;
align-items: start;
}
.device { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.bezel {
background: linear-gradient(180deg, #2a2f3a, #1c2029);
padding: 22px;
border-radius: 18px;
box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
border: 1px solid #333a47;
}
#screen {
display: block;
image-rendering: pixelated;
background: var(--paper);
border-radius: 4px;
/* subtle warm cast of real e-ink; pixels themselves stay pure b/w */
box-shadow: inset 0 0 0 1px rgba(0,0,0,0.15);
cursor: crosshair;
}
.controls { display: flex; gap: 10px; }
button {
background: var(--panel);
color: var(--ink);
border: 1px solid var(--line);
border-radius: 8px;
padding: 9px 16px;
font-size: 13px;
cursor: pointer;
transition: border-color .15s, background .15s;
}
button:hover { border-color: var(--accent); }
button.ghost { background: transparent; }
.options {
display: flex;
flex-wrap: wrap;
gap: 16px;
align-items: center;
justify-content: center;
font-size: 13px;
color: var(--muted);
}
.field { display: flex; flex-direction: column; gap: 4px; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }
select {
background: var(--panel);
color: var(--ink);
border: 1px solid var(--line);
border-radius: 8px;
padding: 7px 10px;
font-size: 13px;
}
.chk { display: flex; align-items: center; gap: 7px; cursor: pointer; }
.status {
font-family: ui-monospace, monospace;
font-size: 12px;
color: var(--muted);
min-height: 18px;
text-align: center;
}
.sidebar h2 {
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.14em;
color: var(--muted);
margin: 6px 0 12px;
}
.list {
display: flex;
flex-direction: column;
gap: 4px;
max-height: 70vh;
overflow-y: auto;
padding-right: 4px;
}
.row {
text-align: left;
display: flex;
flex-direction: column;
gap: 2px;
padding: 8px 12px;
border-radius: 8px;
border: 1px solid transparent;
background: transparent;
}
.row:hover { background: var(--panel); }
.row.active { border-color: var(--accent); background: var(--panel); }
.row .nm { font-size: 13px; }
.row .ct { font-size: 11px; color: var(--muted); }
@media (max-width: 820px) {
.stage { grid-template-columns: 1fr; }
}