@striae-org/striae 3.0.4
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.
- package/.env.example +100 -0
- package/LICENSE +190 -0
- package/NOTICE +18 -0
- package/README.md +133 -0
- package/app/components/actions/case-export/core-export.ts +328 -0
- package/app/components/actions/case-export/data-processing.ts +167 -0
- package/app/components/actions/case-export/download-handlers.ts +900 -0
- package/app/components/actions/case-export/index.ts +41 -0
- package/app/components/actions/case-export/metadata-helpers.ts +107 -0
- package/app/components/actions/case-export/types-constants.ts +56 -0
- package/app/components/actions/case-export/validation-utils.ts +25 -0
- package/app/components/actions/case-export.ts +4 -0
- package/app/components/actions/case-import/annotation-import.ts +35 -0
- package/app/components/actions/case-import/confirmation-import.ts +363 -0
- package/app/components/actions/case-import/image-operations.ts +61 -0
- package/app/components/actions/case-import/index.ts +39 -0
- package/app/components/actions/case-import/orchestrator.ts +420 -0
- package/app/components/actions/case-import/storage-operations.ts +270 -0
- package/app/components/actions/case-import/validation.ts +189 -0
- package/app/components/actions/case-import/zip-processing.ts +413 -0
- package/app/components/actions/case-manage.ts +524 -0
- package/app/components/actions/case-review.ts +4 -0
- package/app/components/actions/confirm-export.ts +351 -0
- package/app/components/actions/generate-pdf.ts +210 -0
- package/app/components/actions/image-manage.ts +385 -0
- package/app/components/actions/notes-manage.ts +33 -0
- package/app/components/actions/signout.module.css +15 -0
- package/app/components/actions/signout.tsx +50 -0
- package/app/components/audit/user-audit-viewer.tsx +975 -0
- package/app/components/audit/user-audit.module.css +568 -0
- package/app/components/auth/auth-provider.tsx +78 -0
- package/app/components/auth/mfa-enrollment.module.css +268 -0
- package/app/components/auth/mfa-enrollment.tsx +398 -0
- package/app/components/auth/mfa-verification.module.css +251 -0
- package/app/components/auth/mfa-verification.tsx +295 -0
- package/app/components/button/button.module.css +63 -0
- package/app/components/button/button.tsx +46 -0
- package/app/components/canvas/box-annotations/box-annotations.module.css +170 -0
- package/app/components/canvas/box-annotations/box-annotations.tsx +634 -0
- package/app/components/canvas/canvas.module.css +314 -0
- package/app/components/canvas/canvas.tsx +449 -0
- package/app/components/canvas/confirmation/confirmation.module.css +187 -0
- package/app/components/canvas/confirmation/confirmation.tsx +214 -0
- package/app/components/colors/colors.module.css +59 -0
- package/app/components/colors/colors.tsx +68 -0
- package/app/components/form/base-form.tsx +21 -0
- package/app/components/form/form-button.tsx +28 -0
- package/app/components/form/form-field.tsx +53 -0
- package/app/components/form/form-message.tsx +17 -0
- package/app/components/form/form-toggle.tsx +23 -0
- package/app/components/form/form.module.css +427 -0
- package/app/components/form/index.ts +6 -0
- package/app/components/icon/icon.module.css +3 -0
- package/app/components/icon/icon.tsx +27 -0
- package/app/components/icon/icons.svg +102 -0
- package/app/components/icon/manifest.json +110 -0
- package/app/components/sidebar/case-export/case-export.module.css +386 -0
- package/app/components/sidebar/case-export/case-export.tsx +317 -0
- package/app/components/sidebar/case-import/case-import.module.css +626 -0
- package/app/components/sidebar/case-import/case-import.tsx +404 -0
- package/app/components/sidebar/case-import/components/CasePreviewSection.tsx +72 -0
- package/app/components/sidebar/case-import/components/ConfirmationDialog.tsx +72 -0
- package/app/components/sidebar/case-import/components/ConfirmationPreviewSection.tsx +71 -0
- package/app/components/sidebar/case-import/components/ExistingCaseSection.tsx +40 -0
- package/app/components/sidebar/case-import/components/FileSelector.tsx +161 -0
- package/app/components/sidebar/case-import/components/ProgressSection.tsx +46 -0
- package/app/components/sidebar/case-import/hooks/useFilePreview.ts +101 -0
- package/app/components/sidebar/case-import/hooks/useImportExecution.ts +152 -0
- package/app/components/sidebar/case-import/hooks/useImportState.ts +88 -0
- package/app/components/sidebar/case-import/index.ts +18 -0
- package/app/components/sidebar/case-import/utils/file-validation.ts +43 -0
- package/app/components/sidebar/cases/case-sidebar.tsx +827 -0
- package/app/components/sidebar/cases/cases-modal.module.css +166 -0
- package/app/components/sidebar/cases/cases-modal.tsx +201 -0
- package/app/components/sidebar/cases/cases.module.css +713 -0
- package/app/components/sidebar/files/files-modal.module.css +209 -0
- package/app/components/sidebar/files/files-modal.tsx +239 -0
- package/app/components/sidebar/hash/hash-utility.module.css +366 -0
- package/app/components/sidebar/hash/hash-utility.tsx +982 -0
- package/app/components/sidebar/notes/notes-modal.tsx +51 -0
- package/app/components/sidebar/notes/notes-sidebar.tsx +491 -0
- package/app/components/sidebar/notes/notes.module.css +360 -0
- package/app/components/sidebar/sidebar-container.tsx +149 -0
- package/app/components/sidebar/sidebar.module.css +321 -0
- package/app/components/sidebar/sidebar.tsx +215 -0
- package/app/components/sidebar/upload/image-upload-zone.module.css +123 -0
- package/app/components/sidebar/upload/image-upload-zone.tsx +330 -0
- package/app/components/theme-provider/theme-provider.tsx +131 -0
- package/app/components/theme-provider/theme.ts +155 -0
- package/app/components/toast/toast.module.css +137 -0
- package/app/components/toast/toast.tsx +56 -0
- package/app/components/toolbar/toolbar-color-selector.module.css +171 -0
- package/app/components/toolbar/toolbar-color-selector.tsx +129 -0
- package/app/components/toolbar/toolbar.module.css +42 -0
- package/app/components/toolbar/toolbar.tsx +167 -0
- package/app/components/user/delete-account.module.css +274 -0
- package/app/components/user/delete-account.tsx +471 -0
- package/app/components/user/inactivity-warning.module.css +145 -0
- package/app/components/user/inactivity-warning.tsx +84 -0
- package/app/components/user/manage-profile.module.css +190 -0
- package/app/components/user/manage-profile.tsx +253 -0
- package/app/components/user/mfa-phone-update.tsx +739 -0
- package/app/config-example/admin-service.json +13 -0
- package/app/config-example/config.json +17 -0
- package/app/config-example/firebase.ts +21 -0
- package/app/config-example/inactivity.ts +13 -0
- package/app/config-example/meta-config.json +6 -0
- package/app/contexts/auth.context.ts +12 -0
- package/app/entry.client.tsx +12 -0
- package/app/entry.server.tsx +44 -0
- package/app/hooks/useInactivityTimeout.ts +110 -0
- package/app/root.tsx +170 -0
- package/app/routes/_index.tsx +16 -0
- package/app/routes/auth/emailActionHandler.module.css +232 -0
- package/app/routes/auth/emailActionHandler.tsx +405 -0
- package/app/routes/auth/emailVerification.tsx +120 -0
- package/app/routes/auth/login.module.css +523 -0
- package/app/routes/auth/login.tsx +654 -0
- package/app/routes/auth/passwordReset.module.css +274 -0
- package/app/routes/auth/passwordReset.tsx +154 -0
- package/app/routes/auth/route.ts +16 -0
- package/app/routes/mobile-prevented/mobilePrevented.module.css +47 -0
- package/app/routes/mobile-prevented/mobilePrevented.tsx +26 -0
- package/app/routes/mobile-prevented/route.ts +14 -0
- package/app/routes/striae/striae.module.css +30 -0
- package/app/routes/striae/striae.tsx +417 -0
- package/app/services/audit-export.service.ts +755 -0
- package/app/services/audit.service.ts +1454 -0
- package/app/services/firebase-errors.ts +106 -0
- package/app/services/firebase.ts +15 -0
- package/app/styles/legal-pages.module.css +113 -0
- package/app/styles/root.module.css +146 -0
- package/app/tailwind.css +225 -0
- package/app/types/annotations.ts +45 -0
- package/app/types/audit.ts +301 -0
- package/app/types/case.ts +90 -0
- package/app/types/export.ts +8 -0
- package/app/types/file.ts +30 -0
- package/app/types/import.ts +107 -0
- package/app/types/index.ts +24 -0
- package/app/types/user.ts +38 -0
- package/app/utils/SHA256.ts +461 -0
- package/app/utils/annotation-timestamp.ts +25 -0
- package/app/utils/audit-export-signature.ts +117 -0
- package/app/utils/auth-action-settings.ts +48 -0
- package/app/utils/auth.ts +34 -0
- package/app/utils/batch-operations.ts +135 -0
- package/app/utils/confirmation-signature.ts +193 -0
- package/app/utils/data-operations.ts +871 -0
- package/app/utils/device-detection.ts +5 -0
- package/app/utils/html-sanitizer.ts +80 -0
- package/app/utils/id-generator.ts +36 -0
- package/app/utils/meta.ts +48 -0
- package/app/utils/mfa-phone.ts +97 -0
- package/app/utils/mfa.ts +79 -0
- package/app/utils/password-policy.ts +28 -0
- package/app/utils/permissions.ts +562 -0
- package/app/utils/signature-utils.ts +160 -0
- package/app/utils/style.ts +83 -0
- package/app/utils/version.ts +5 -0
- package/firebase.json +11 -0
- package/functions/[[path]].ts +10 -0
- package/package.json +138 -0
- package/postcss.config.js +6 -0
- package/public/.well-known/publickey.info@striae.org.asc +17 -0
- package/public/.well-known/security.txt +7 -0
- package/public/_headers +28 -0
- package/public/_routes.json +13 -0
- package/public/assets/striae.jpg +0 -0
- package/public/clear.jpg +0 -0
- package/public/favicon.ico +0 -0
- package/public/favicon.svg +9 -0
- package/public/icon-256.png +0 -0
- package/public/icon-512.png +0 -0
- package/public/logo-dark.png +0 -0
- package/public/manifest.json +25 -0
- package/public/oin-badge.png +0 -0
- package/public/shortcut.png +0 -0
- package/public/social-image.png +0 -0
- package/public/striae-ascii.txt +10 -0
- package/scripts/deploy-all.sh +100 -0
- package/scripts/deploy-config.sh +940 -0
- package/scripts/deploy-pages.sh +34 -0
- package/scripts/deploy-worker-secrets.sh +215 -0
- package/scripts/dev.cjs +23 -0
- package/scripts/install-workers.sh +88 -0
- package/scripts/run-eslint.cjs +35 -0
- package/scripts/update-compatibility-dates.cjs +124 -0
- package/scripts/update-markdown-versions.cjs +43 -0
- package/tailwind.config.ts +22 -0
- package/tsconfig.json +33 -0
- package/vite.config.ts +35 -0
- package/worker-configuration.d.ts +7490 -0
- package/workers/audit-worker/package.json +17 -0
- package/workers/audit-worker/src/audit-worker.example.ts +195 -0
- package/workers/audit-worker/worker-configuration.d.ts +7448 -0
- package/workers/audit-worker/wrangler.jsonc.example +29 -0
- package/workers/data-worker/package.json +17 -0
- package/workers/data-worker/src/data-worker.example.ts +267 -0
- package/workers/data-worker/src/signature-utils.ts +79 -0
- package/workers/data-worker/src/signing-payload-utils.ts +290 -0
- package/workers/data-worker/worker-configuration.d.ts +7448 -0
- package/workers/data-worker/wrangler.jsonc.example +30 -0
- package/workers/image-worker/package.json +17 -0
- package/workers/image-worker/src/image-worker.example.ts +180 -0
- package/workers/image-worker/worker-configuration.d.ts +7447 -0
- package/workers/image-worker/wrangler.jsonc.example +22 -0
- package/workers/keys-worker/package.json +17 -0
- package/workers/keys-worker/src/keys.example.ts +66 -0
- package/workers/keys-worker/src/keys.ts +66 -0
- package/workers/keys-worker/worker-configuration.d.ts +7447 -0
- package/workers/keys-worker/wrangler.jsonc.example +22 -0
- package/workers/pdf-worker/package.json +17 -0
- package/workers/pdf-worker/src/format-striae.ts +534 -0
- package/workers/pdf-worker/src/pdf-worker.example.ts +119 -0
- package/workers/pdf-worker/src/report-types.ts +69 -0
- package/workers/pdf-worker/worker-configuration.d.ts +7448 -0
- package/workers/pdf-worker/wrangler.jsonc.example +26 -0
- package/workers/user-worker/package.json +17 -0
- package/workers/user-worker/src/user-worker.example.ts +636 -0
- package/workers/user-worker/worker-configuration.d.ts +7448 -0
- package/workers/user-worker/wrangler.jsonc.example +29 -0
- package/wrangler.toml.example +8 -0
|
@@ -0,0 +1,314 @@
|
|
|
1
|
+
.canvasContainer {
|
|
2
|
+
flex: 1;
|
|
3
|
+
width: 100%;
|
|
4
|
+
height: 100%;
|
|
5
|
+
display: flex;
|
|
6
|
+
justify-content: center;
|
|
7
|
+
align-items: center;
|
|
8
|
+
background-color: #444444;
|
|
9
|
+
padding: 1rem;
|
|
10
|
+
position: relative;
|
|
11
|
+
overflow: hidden;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.imageContainer {
|
|
15
|
+
position: relative;
|
|
16
|
+
display: flex;
|
|
17
|
+
justify-content: center;
|
|
18
|
+
align-items: center;
|
|
19
|
+
max-width: 100%;
|
|
20
|
+
max-height: 100%;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.toolbarWrapper {
|
|
24
|
+
position: absolute;
|
|
25
|
+
left: var(--spaceL);
|
|
26
|
+
top: var(--spaceL);
|
|
27
|
+
z-index: 20;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/* Filename & Confirmation Display */
|
|
31
|
+
.filenameDisplay {
|
|
32
|
+
position: absolute;
|
|
33
|
+
left: 12rem;
|
|
34
|
+
top: 1rem;
|
|
35
|
+
z-index: 15;
|
|
36
|
+
color: #e0e0e0;
|
|
37
|
+
font-family: 'Inter', sans-serif;
|
|
38
|
+
font-size: 1rem;
|
|
39
|
+
font-weight: 500;
|
|
40
|
+
pointer-events: none;
|
|
41
|
+
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
|
|
42
|
+
white-space: nowrap;
|
|
43
|
+
overflow: hidden;
|
|
44
|
+
text-overflow: ellipsis;
|
|
45
|
+
max-width: calc(100vw - 14rem);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.confirmationIncluded {
|
|
49
|
+
font-size: 0.8rem;
|
|
50
|
+
color: #FFDE21;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.confirmationConfirmed {
|
|
54
|
+
font-size: 0.8rem;
|
|
55
|
+
color: #28a745;
|
|
56
|
+
font-weight: 600;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.confirmationRow {
|
|
60
|
+
margin-top: 0.5rem;
|
|
61
|
+
display: flex;
|
|
62
|
+
align-items: center;
|
|
63
|
+
gap: 0.75rem;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.confirmButton {
|
|
67
|
+
padding: 0.4rem 0.8rem;
|
|
68
|
+
background-color: #198754;
|
|
69
|
+
color: white;
|
|
70
|
+
border: none;
|
|
71
|
+
border-radius: 4px;
|
|
72
|
+
font-size: 0.75rem;
|
|
73
|
+
font-weight: 500;
|
|
74
|
+
cursor: pointer;
|
|
75
|
+
pointer-events: auto;
|
|
76
|
+
transition: all var(--durationS) var(--bezierFastoutSlowin);
|
|
77
|
+
box-shadow: 0 1px 3px rgba(25, 135, 84, 0.3);
|
|
78
|
+
white-space: nowrap;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.confirmButton:hover {
|
|
82
|
+
background-color: color-mix(in lab, #198754 85%, var(--black));
|
|
83
|
+
box-shadow: 0 2px 6px rgba(25, 135, 84, 0.4);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.viewConfirmationButton {
|
|
87
|
+
padding: 0.4rem 0.8rem;
|
|
88
|
+
background-color: #007bff;
|
|
89
|
+
color: white;
|
|
90
|
+
border: none;
|
|
91
|
+
border-radius: 4px;
|
|
92
|
+
font-size: 0.75rem;
|
|
93
|
+
font-weight: 500;
|
|
94
|
+
cursor: pointer;
|
|
95
|
+
pointer-events: auto;
|
|
96
|
+
transition: all var(--durationS) var(--bezierFastoutSlowin);
|
|
97
|
+
box-shadow: 0 1px 3px rgba(0, 123, 255, 0.3);
|
|
98
|
+
white-space: nowrap;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.viewConfirmationButton:hover {
|
|
102
|
+
background-color: color-mix(in lab, #007bff 85%, var(--black));
|
|
103
|
+
box-shadow: 0 2px 6px rgba(0, 123, 255, 0.4);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
/* Company Display */
|
|
107
|
+
.companyDisplay {
|
|
108
|
+
position: absolute;
|
|
109
|
+
right: 2rem;
|
|
110
|
+
top: 1rem;
|
|
111
|
+
z-index: 15;
|
|
112
|
+
color: #e0e0e0;
|
|
113
|
+
font-family: 'Inter', sans-serif;
|
|
114
|
+
font-size: 1.5rem;
|
|
115
|
+
font-weight: 500;
|
|
116
|
+
pointer-events: none;
|
|
117
|
+
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
|
|
118
|
+
white-space: nowrap;
|
|
119
|
+
overflow: hidden;
|
|
120
|
+
text-overflow: ellipsis;
|
|
121
|
+
max-width: calc(100vw - 16rem);
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.image {
|
|
125
|
+
max-width: 100%;
|
|
126
|
+
max-height: 80vh;
|
|
127
|
+
object-fit: contain;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.placeholder, .loading {
|
|
131
|
+
color: #e0e0e0;
|
|
132
|
+
font-size: 1.1rem;
|
|
133
|
+
text-align: center;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.error {
|
|
137
|
+
color: #dc3545;
|
|
138
|
+
background-color: rgba(220, 53, 69, 0.1);
|
|
139
|
+
padding: 1rem;
|
|
140
|
+
border-radius: 4px;
|
|
141
|
+
text-align: center;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
/* Annotations Overlay */
|
|
145
|
+
.annotationsOverlay {
|
|
146
|
+
position: absolute;
|
|
147
|
+
top: 0;
|
|
148
|
+
left: 0;
|
|
149
|
+
width: 100%;
|
|
150
|
+
height: 100%;
|
|
151
|
+
pointer-events: none;
|
|
152
|
+
z-index: 10;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.leftAnnotation,
|
|
156
|
+
.rightAnnotation {
|
|
157
|
+
position: absolute;
|
|
158
|
+
padding: 0.75rem 1rem;
|
|
159
|
+
background: rgba(0, 0, 0, 0.7);
|
|
160
|
+
border-radius: 6px;
|
|
161
|
+
backdrop-filter: blur(4px);
|
|
162
|
+
border: 2px solid rgba(255, 255, 255, 0.2);
|
|
163
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.leftAnnotation {
|
|
167
|
+
top: 1rem;
|
|
168
|
+
left: 1rem;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.rightAnnotation {
|
|
172
|
+
top: 1rem;
|
|
173
|
+
right: 1rem;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.indexAnnotation {
|
|
177
|
+
position: absolute;
|
|
178
|
+
bottom: 1rem;
|
|
179
|
+
left: 1rem;
|
|
180
|
+
padding: 0.75rem 1rem;
|
|
181
|
+
background: rgba(0, 0, 0, 0.7);
|
|
182
|
+
border-radius: 6px;
|
|
183
|
+
backdrop-filter: blur(4px);
|
|
184
|
+
border: 2px solid rgba(255, 255, 255, 0.2);
|
|
185
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.caseText {
|
|
189
|
+
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
|
|
190
|
+
font-size: 1.1rem;
|
|
191
|
+
font-weight: 700;
|
|
192
|
+
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
|
|
193
|
+
white-space: nowrap;
|
|
194
|
+
letter-spacing: 0.5px;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
/* Class Characteristics Display */
|
|
198
|
+
.classCharacteristics {
|
|
199
|
+
position: absolute;
|
|
200
|
+
top: -3rem;
|
|
201
|
+
left: 50%;
|
|
202
|
+
transform: translateX(-50%);
|
|
203
|
+
z-index: 15;
|
|
204
|
+
pointer-events: none;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.classText {
|
|
208
|
+
padding: 0.75rem 1.5rem;
|
|
209
|
+
background: rgba(0, 0, 0, 0.8);
|
|
210
|
+
color: #ffffff;
|
|
211
|
+
border-radius: 8px;
|
|
212
|
+
backdrop-filter: blur(6px);
|
|
213
|
+
border: 2px solid rgba(255, 255, 255, 0.2);
|
|
214
|
+
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
|
|
215
|
+
font-family: 'Inter', sans-serif;
|
|
216
|
+
font-size: 1.1rem;
|
|
217
|
+
font-weight: 600;
|
|
218
|
+
text-align: center;
|
|
219
|
+
letter-spacing: 0.5px;
|
|
220
|
+
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
|
|
221
|
+
white-space: nowrap;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
/* Support Level Display */
|
|
225
|
+
.supportLevelAnnotation {
|
|
226
|
+
position: absolute;
|
|
227
|
+
bottom: 1rem;
|
|
228
|
+
left: 1rem;
|
|
229
|
+
z-index: 20;
|
|
230
|
+
pointer-events: none;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.supportLevelText {
|
|
234
|
+
padding: 0.75rem 1.5rem;
|
|
235
|
+
background: rgba(0, 0, 0, 0.8);
|
|
236
|
+
border-radius: 8px;
|
|
237
|
+
backdrop-filter: blur(6px);
|
|
238
|
+
border: 2px solid rgba(255, 255, 255, 0.2);
|
|
239
|
+
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
|
|
240
|
+
font-family: 'Inter', sans-serif;
|
|
241
|
+
font-size: 1.1rem;
|
|
242
|
+
font-weight: 700;
|
|
243
|
+
text-align: center;
|
|
244
|
+
letter-spacing: 0.5px;
|
|
245
|
+
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
|
|
246
|
+
white-space: nowrap;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
/* Subclass Warning Display */
|
|
250
|
+
.subclassWarning {
|
|
251
|
+
position: absolute;
|
|
252
|
+
bottom: 1rem;
|
|
253
|
+
right: 2rem;
|
|
254
|
+
z-index: 20;
|
|
255
|
+
pointer-events: none;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.subclassText {
|
|
259
|
+
padding: 0.75rem 1.5rem;
|
|
260
|
+
background: rgba(220, 53, 69, 0.9);
|
|
261
|
+
color: #ffffff;
|
|
262
|
+
border-radius: 8px;
|
|
263
|
+
backdrop-filter: blur(6px);
|
|
264
|
+
border: 2px solid rgba(255, 255, 255, 0.3);
|
|
265
|
+
box-shadow: 0 4px 16px rgba(220, 53, 69, 0.4);
|
|
266
|
+
font-family: 'Inter', sans-serif;
|
|
267
|
+
font-size: 1rem;
|
|
268
|
+
font-weight: 700;
|
|
269
|
+
text-align: center;
|
|
270
|
+
letter-spacing: 0.5px;
|
|
271
|
+
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
|
|
272
|
+
white-space: nowrap;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.flashing .subclassText {
|
|
276
|
+
background: rgba(255, 0, 0, 0.95);
|
|
277
|
+
box-shadow: 0 4px 20px rgba(255, 0, 0, 0.6);
|
|
278
|
+
transform: scale(1.05);
|
|
279
|
+
transition: all 0.1s ease-in-out;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
/* Image and Notes Container */
|
|
283
|
+
.imageAndNotesContainer {
|
|
284
|
+
display: flex;
|
|
285
|
+
flex-direction: column;
|
|
286
|
+
align-items: center;
|
|
287
|
+
gap: 1rem;
|
|
288
|
+
max-width: 100%;
|
|
289
|
+
max-height: 100%;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
/* Additional Notes Display */
|
|
293
|
+
.additionalNotesContainer {
|
|
294
|
+
display: flex;
|
|
295
|
+
justify-content: center;
|
|
296
|
+
width: 100%;
|
|
297
|
+
max-width: 600px;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.additionalNotesBox {
|
|
301
|
+
background: #ffffff;
|
|
302
|
+
color: #000000;
|
|
303
|
+
padding: 1rem 1.5rem;
|
|
304
|
+
border-radius: 8px;
|
|
305
|
+
border: 2px solid #d0d0d0;
|
|
306
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
307
|
+
font-family: 'Inter', sans-serif;
|
|
308
|
+
font-size: 0.95rem;
|
|
309
|
+
line-height: 1.4;
|
|
310
|
+
text-align: left;
|
|
311
|
+
white-space: pre-wrap;
|
|
312
|
+
word-wrap: break-word;
|
|
313
|
+
max-width: 100%;
|
|
314
|
+
}
|