epi-recorder 2.0.0__py3-none-any.whl → 2.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,365 @@
1
+ /* EPI Viewer Lite CSS - Offline fallback for Tailwind classes */
2
+ body {
3
+ font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
4
+ background-color: #f9fafb;
5
+ margin: 0;
6
+ line-height: 1.5;
7
+ color: #111827;
8
+ }
9
+
10
+ /* Wrapper helpers */
11
+ .min-h-screen {
12
+ min-height: 100vh;
13
+ }
14
+
15
+ .max-w-7xl {
16
+ max-width: 80rem;
17
+ }
18
+
19
+ .mx-auto {
20
+ margin-left: auto;
21
+ margin-right: auto;
22
+ }
23
+
24
+ .px-4 {
25
+ padding-left: 1rem;
26
+ padding-right: 1rem;
27
+ }
28
+
29
+ .py-4 {
30
+ padding-top: 1rem;
31
+ padding-bottom: 1rem;
32
+ }
33
+
34
+ .py-6 {
35
+ padding-top: 1.5rem;
36
+ padding-bottom: 1.5rem;
37
+ }
38
+
39
+ .px-6 {
40
+ padding-left: 1.5rem;
41
+ padding-right: 1.5rem;
42
+ }
43
+
44
+ .mb-2 {
45
+ margin-bottom: 0.5rem;
46
+ }
47
+
48
+ .mb-4 {
49
+ margin-bottom: 1rem;
50
+ }
51
+
52
+ .mb-6 {
53
+ margin-bottom: 1.5rem;
54
+ }
55
+
56
+ .mt-1 {
57
+ margin-top: 0.25rem;
58
+ }
59
+
60
+ .mt-2 {
61
+ margin-top: 0.5rem;
62
+ }
63
+
64
+ .mt-3 {
65
+ margin-top: 0.75rem;
66
+ }
67
+
68
+ .ml-auto {
69
+ margin-left: auto;
70
+ }
71
+
72
+ .mr-auto {
73
+ margin-right: auto;
74
+ }
75
+
76
+ .space-y-3>*+* {
77
+ margin-top: 0.75rem;
78
+ }
79
+
80
+ .space-y-2>*+* {
81
+ margin-top: 0.5rem;
82
+ }
83
+
84
+ .gap-6 {
85
+ gap: 1.5rem;
86
+ }
87
+
88
+ .gap-2 {
89
+ gap: 0.5rem;
90
+ }
91
+
92
+ /* Flex/Grid */
93
+ .flex {
94
+ display: flex;
95
+ }
96
+
97
+ .inline-flex {
98
+ display: inline-flex;
99
+ }
100
+
101
+ .items-center {
102
+ align-items: center;
103
+ }
104
+
105
+ .justify-between {
106
+ justify-content: space-between;
107
+ }
108
+
109
+ .justify-center {
110
+ justify-content: center;
111
+ }
112
+
113
+ .flex-wrap {
114
+ flex-wrap: wrap;
115
+ }
116
+
117
+ .flex-col {
118
+ flex-direction: column;
119
+ }
120
+
121
+ .grid {
122
+ display: grid;
123
+ }
124
+
125
+ .grid-cols-1 {
126
+ grid-template-columns: repeat(1, minmax(0, 1fr));
127
+ }
128
+
129
+ .space-x-2>*+* {
130
+ margin-left: 0.5rem;
131
+ }
132
+
133
+ @media (min-width: 1024px) {
134
+ .lg\:grid-cols-3 {
135
+ grid-template-columns: repeat(3, minmax(0, 1fr));
136
+ }
137
+
138
+ .lg\:col-span-1 {
139
+ grid-column: span 1 / span 1;
140
+ }
141
+
142
+ .lg\:col-span-2 {
143
+ grid-column: span 2 / span 2;
144
+ }
145
+ }
146
+
147
+ /* Colors & Decor */
148
+ .bg-white {
149
+ background-color: #ffffff;
150
+ }
151
+
152
+ .bg-gray-50 {
153
+ background-color: #f9fafb;
154
+ }
155
+
156
+ .bg-blue-50 {
157
+ background-color: #eff6ff;
158
+ }
159
+
160
+ .bg-blue-100 {
161
+ background-color: #dbeafe;
162
+ }
163
+
164
+ .bg-green-100 {
165
+ background-color: #dcfce7;
166
+ }
167
+
168
+ .bg-yellow-50 {
169
+ background-color: #fefce8;
170
+ }
171
+
172
+ .bg-yellow-100 {
173
+ background-color: #fef9c3;
174
+ }
175
+
176
+ .bg-purple-100 {
177
+ background-color: #f3e8ff;
178
+ }
179
+
180
+ .bg-gray-100 {
181
+ background-color: #f3f4f6;
182
+ }
183
+
184
+ .text-gray-900 {
185
+ color: #111827;
186
+ }
187
+
188
+ .text-gray-500 {
189
+ color: #6b7280;
190
+ }
191
+
192
+ .text-gray-600 {
193
+ color: #4b5563;
194
+ }
195
+
196
+ .text-blue-800 {
197
+ color: #1e40af;
198
+ }
199
+
200
+ .text-blue-900 {
201
+ color: #1e3a8a;
202
+ }
203
+
204
+ .text-green-800 {
205
+ color: #166534;
206
+ }
207
+
208
+ .text-green-700 {
209
+ color: #15803d;
210
+ }
211
+
212
+ .text-yellow-800 {
213
+ color: #854d0e;
214
+ }
215
+
216
+ .text-yellow-700 {
217
+ color: #a16207;
218
+ }
219
+
220
+ .text-purple-800 {
221
+ color: #6b21a8;
222
+ }
223
+
224
+ .text-red-600 {
225
+ color: #dc2626;
226
+ }
227
+
228
+ .shadow {
229
+ box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
230
+ }
231
+
232
+ .shadow-sm {
233
+ box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
234
+ }
235
+
236
+ .border-b {
237
+ border-bottom-width: 1px;
238
+ }
239
+
240
+ .border-t {
241
+ border-top-width: 1px;
242
+ }
243
+
244
+ .border {
245
+ border-width: 1px;
246
+ }
247
+
248
+ .border-gray-200 {
249
+ border-color: #e5e7eb;
250
+ }
251
+
252
+ .border-yellow-200 {
253
+ border-color: #fef08a;
254
+ }
255
+
256
+ .rounded-lg {
257
+ border-radius: 0.5rem;
258
+ }
259
+
260
+ .rounded-full {
261
+ border-radius: 9999px;
262
+ }
263
+
264
+ .rounded {
265
+ border-radius: 0.25rem;
266
+ }
267
+
268
+ /* Text */
269
+ .text-2xl {
270
+ font-size: 1.5rem;
271
+ line-height: 2rem;
272
+ }
273
+
274
+ .text-lg {
275
+ font-size: 1.125rem;
276
+ line-height: 1.75rem;
277
+ }
278
+
279
+ .text-sm {
280
+ font-size: 0.875rem;
281
+ line-height: 1.25rem;
282
+ }
283
+
284
+ .text-xs {
285
+ font-size: 0.75rem;
286
+ line-height: 1rem;
287
+ }
288
+
289
+ .text-center {
290
+ text-align: center;
291
+ }
292
+
293
+ .font-bold {
294
+ font-weight: 700;
295
+ }
296
+
297
+ .font-semibold {
298
+ font-weight: 600;
299
+ }
300
+
301
+ .font-medium {
302
+ font-weight: 500;
303
+ }
304
+
305
+ .font-mono {
306
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
307
+ }
308
+
309
+ .uppercase {
310
+ text-transform: uppercase;
311
+ }
312
+
313
+ .tracking-wide {
314
+ letter-spacing: 0.025em;
315
+ }
316
+
317
+ .break-all {
318
+ word-break: break-all;
319
+ }
320
+
321
+ .whitespace-pre-wrap {
322
+ white-space: pre-wrap;
323
+ }
324
+
325
+ /* Components */
326
+ .sticky {
327
+ position: sticky;
328
+ }
329
+
330
+ .top-6 {
331
+ top: 1.5rem;
332
+ }
333
+
334
+ .divide-y>*+* {
335
+ border-top-width: 1px;
336
+ border-color: #e5e7eb;
337
+ }
338
+
339
+ .overflow-auto {
340
+ overflow: auto;
341
+ }
342
+
343
+ .w-4 {
344
+ width: 1rem;
345
+ }
346
+
347
+ .h-4 {
348
+ height: 1rem;
349
+ }
350
+
351
+ .w-5 {
352
+ width: 1.25rem;
353
+ }
354
+
355
+ .h-5 {
356
+ height: 1.25rem;
357
+ }
358
+
359
+ .mr-1 {
360
+ margin-right: 0.25rem;
361
+ }
362
+
363
+ .mr-2 {
364
+ margin-right: 0.5rem;
365
+ }