TheGreatUnknown commited on
Commit
006e303
·
verified ·
1 Parent(s): 9566e84

Create styles.css

Browse files
Files changed (1) hide show
  1. styles.css +558 -0
styles.css ADDED
@@ -0,0 +1,558 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Base Styles */
2
+ :root {
3
+ --primary: #6200ea;
4
+ --primary-dark: #3700b3;
5
+ --primary-light: #bb86fc;
6
+ --secondary: #03dac6;
7
+ --secondary-dark: #018786;
8
+ --background: #121212;
9
+ --surface: #1e1e1e;
10
+ --error: #cf6679;
11
+ --on-primary: #ffffff;
12
+ --on-secondary: #000000;
13
+ --on-background: #ffffff;
14
+ --on-surface: #ffffff;
15
+ --on-error: #000000;
16
+ --grid-color: rgba(100, 100, 255, 0.2);
17
+ --user-colors: #ff9800, #4caf50, #2196f3, #e91e63, #9c27b0, #00bcd4;
18
+ --notification-bg: rgba(0, 0, 0, 0.8);
19
+ --notification-text: white;
20
+ }
21
+
22
+ * {
23
+ margin: 0;
24
+ padding: 0;
25
+ box-sizing: border-box;
26
+ }
27
+
28
+ body {
29
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
30
+ color: var(--on-background);
31
+ background-color: var(--background);
32
+ line-height: 1.6;
33
+ overflow-x: hidden;
34
+ }
35
+
36
+ .container {
37
+ max-width: 100%;
38
+ margin: 0 auto;
39
+ padding: 1rem;
40
+ }
41
+
42
+ header {
43
+ text-align: center;
44
+ margin-bottom: 2rem;
45
+ padding: 1rem;
46
+ background: linear-gradient(135deg, var(--primary-dark), var(--primary));
47
+ border-radius: 8px;
48
+ }
49
+
50
+ h1 {
51
+ font-size: 2.5rem;
52
+ margin-bottom: 0.5rem;
53
+ background: linear-gradient(90deg, var(--secondary), var(--primary-light));
54
+ -webkit-background-clip: text;
55
+ background-clip: text;
56
+ color: transparent;
57
+ text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
58
+ }
59
+
60
+ h2 {
61
+ font-size: 1.2rem;
62
+ color: var(--secondary);
63
+ font-weight: 400;
64
+ }
65
+
66
+ h3 {
67
+ font-size: 1.1rem;
68
+ margin-bottom: 0.8rem;
69
+ color: var(--primary-light);
70
+ border-bottom: 1px solid var(--primary);
71
+ padding-bottom: 0.3rem;
72
+ }
73
+
74
+ /* Visualization Section */
75
+ .visualization-container {
76
+ background-color: var(--surface);
77
+ border-radius: 8px;
78
+ overflow: hidden;
79
+ margin-bottom: 2rem;
80
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
81
+ }
82
+
83
+ #visualization {
84
+ height: 300px;
85
+ width: 100%;
86
+ background-color: rgba(0, 0, 0, 0.3);
87
+ position: relative;
88
+ overflow: hidden;
89
+ }
90
+
91
+ .visual-grid {
92
+ position: absolute;
93
+ top: 0;
94
+ left: 0;
95
+ width: 100%;
96
+ height: 100%;
97
+ background-size: 40px 40px;
98
+ background-image:
99
+ linear-gradient(to right, var(--grid-color) 1px, transparent 1px),
100
+ linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px);
101
+ transform-origin: center;
102
+ transform: perspective(500px) rotateX(60deg) scale(1.5);
103
+ }
104
+
105
+ /* Control Panel */
106
+ .controls {
107
+ display: flex;
108
+ flex-wrap: wrap;
109
+ gap: 1rem;
110
+ padding: 1rem;
111
+ }
112
+
113
+ .control-panel, .info-panel {
114
+ flex: 1;
115
+ min-width: 250px;
116
+ background-color: rgba(0, 0, 0, 0.2);
117
+ padding: 1rem;
118
+ border-radius: 8px;
119
+ }
120
+
121
+ .control-group {
122
+ margin-bottom: 1.5rem;
123
+ display: flex;
124
+ flex-wrap: wrap;
125
+ gap: 0.5rem;
126
+ }
127
+
128
+ button {
129
+ background-color: var(--primary);
130
+ color: var(--on-primary);
131
+ border: none;
132
+ padding: 0.5rem 1rem;
133
+ border-radius: 4px;
134
+ cursor: pointer;
135
+ transition: all 0.3s ease;
136
+ font-weight: 500;
137
+ }
138
+
139
+ button:hover {
140
+ background-color: var(--primary-dark);
141
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
142
+ }
143
+
144
+ .system-btn {
145
+ background-color: rgba(255, 255, 255, 0.1);
146
+ color: var(--on-background);
147
+ }
148
+
149
+ .system-btn.active {
150
+ background-color: var(--primary);
151
+ color: var(--on-primary);
152
+ box-shadow: 0 0 15px var(--primary-light);
153
+ }
154
+
155
+ .system-btn:hover {
156
+ background-color: rgba(255, 255, 255, 0.2);
157
+ }
158
+
159
+ .system-btn.active:hover {
160
+ background-color: var(--primary-dark);
161
+ }
162
+
163
+ #llmlBtn {
164
+ border-left: 3px solid #f06292;
165
+ }
166
+
167
+ #qgaBtn {
168
+ border-left: 3px solid #4fc3f7;
169
+ }
170
+
171
+ #holoBtn {
172
+ border-left: 3px solid #ffeb3b;
173
+ }
174
+
175
+ #integratedBtn {
176
+ border-left: 3px solid #66bb6a;
177
+ }
178
+
179
+ #evolveBtn {
180
+ background-color: var(--secondary);
181
+ color: var(--on-secondary);
182
+ width: 100%;
183
+ margin-bottom: 0.5rem;
184
+ }
185
+
186
+ #evolveBtn:hover {
187
+ background-color: var(--secondary-dark);
188
+ }
189
+
190
+ .slider-container {
191
+ display: flex;
192
+ align-items: center;
193
+ gap: 0.5rem;
194
+ margin-top: 0.5rem;
195
+ }
196
+
197
+ input[type="range"] {
198
+ flex: 1;
199
+ height: 0.5rem;
200
+ border-radius: 0.25rem;
201
+ background: rgba(255, 255, 255, 0.1);
202
+ outline: none;
203
+ }
204
+
205
+ .concept-input {
206
+ display: flex;
207
+ gap: 0.5rem;
208
+ }
209
+
210
+ #conceptInput {
211
+ flex: 1;
212
+ padding: 0.5rem;
213
+ border-radius: 4px;
214
+ border: none;
215
+ background-color: rgba(255, 255, 255, 0.1);
216
+ color: var(--on-surface);
217
+ }
218
+
219
+ #processBtn {
220
+ background-color: var(--secondary);
221
+ color: var(--on-secondary);
222
+ }
223
+
224
+ /* LLML Symbolic styles */
225
+ .symbolic-input {
226
+ display: flex;
227
+ flex-direction: column;
228
+ gap: 0.5rem;
229
+ }
230
+
231
+ #symbolSelector {
232
+ padding: 0.5rem;
233
+ border-radius: 4px;
234
+ border: none;
235
+ background-color: rgba(255, 255, 255, 0.1);
236
+ color: var(--on-surface);
237
+ font-family: 'Courier New', monospace;
238
+ }
239
+
240
+ .symbolic-node {
241
+ color: var(--primary-light);
242
+ font-weight: bold;
243
+ font-family: 'Courier New', monospace;
244
+ }
245
+
246
+ .operator-node {
247
+ color: var(--secondary);
248
+ font-weight: bold;
249
+ }
250
+
251
+ .quantum-node {
252
+ color: #f06292;
253
+ font-weight: bold;
254
+ }
255
+
256
+ .insight-level {
257
+ margin-top: 1rem;
258
+ padding: 0.5rem;
259
+ border-left: 3px solid var(--primary);
260
+ background-color: rgba(0, 0, 0, 0.2);
261
+ }
262
+
263
+ .insight-level h4 {
264
+ color: var(--primary-light);
265
+ margin-bottom: 0.5rem;
266
+ }
267
+
268
+ /* Triadic Architecture styles */
269
+ #sonwBtn {
270
+ border-left: 3px solid #f06292;
271
+ }
272
+
273
+ #afterthoughtBtn {
274
+ border-left: 3px solid #4fc3f7;
275
+ }
276
+
277
+ #cognitiveBtn {
278
+ border-left: 3px solid #ffeb3b;
279
+ }
280
+
281
+ #integratedBtn {
282
+ border-left: 3px solid #66bb6a;
283
+ }
284
+
285
+ /* Info Panel */
286
+ #statusDisplay {
287
+ background-color: rgba(0, 0, 0, 0.3);
288
+ padding: 0.5rem;
289
+ border-radius: 4px;
290
+ margin-bottom: 1rem;
291
+ font-family: monospace;
292
+ color: var(--secondary);
293
+ }
294
+
295
+ .metrics {
296
+ display: flex;
297
+ flex-direction: column;
298
+ gap: 0.8rem;
299
+ }
300
+
301
+ .metric {
302
+ display: flex;
303
+ flex-direction: column;
304
+ gap: 0.3rem;
305
+ }
306
+
307
+ .metric span {
308
+ font-size: 0.9rem;
309
+ }
310
+
311
+ .metric-bar {
312
+ height: 0.5rem;
313
+ background-color: rgba(255, 255, 255, 0.1);
314
+ border-radius: 2px;
315
+ overflow: hidden;
316
+ }
317
+
318
+ .bar-fill {
319
+ height: 100%;
320
+ border-radius: 2px;
321
+ transition: width 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
322
+ }
323
+
324
+ #symbolicBar {
325
+ background: linear-gradient(90deg, #f06292, #ff94c2);
326
+ }
327
+
328
+ #quantumBar {
329
+ background: linear-gradient(90deg, #4fc3f7, #8bf6ff);
330
+ }
331
+
332
+ #holoBar {
333
+ background: linear-gradient(90deg, #ffeb3b, #ffff72);
334
+ }
335
+
336
+ #metaBar {
337
+ background: linear-gradient(90deg, #66bb6a, #98ee99);
338
+ }
339
+
340
+ /* Output Section */
341
+ .output-container {
342
+ background-color: var(--surface);
343
+ border-radius: 8px;
344
+ padding: 1rem;
345
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
346
+ }
347
+
348
+ #output {
349
+ background-color: rgba(0, 0, 0, 0.2);
350
+ padding: 1rem;
351
+ border-radius: 4px;
352
+ min-height: 150px;
353
+ max-height: 300px;
354
+ overflow-y: auto;
355
+ font-family: 'Courier New', Courier, monospace;
356
+ line-height: 1.4;
357
+ }
358
+
359
+ #output .placeholder {
360
+ color: rgba(255, 255, 255, 0.5);
361
+ font-style: italic;
362
+ }
363
+
364
+ .concept-node {
365
+ color: var(--primary-light);
366
+ font-weight: bold;
367
+ }
368
+
369
+ .connection-node {
370
+ color: var(--secondary);
371
+ font-style: italic;
372
+ }
373
+
374
+ /* Animation Classes */
375
+ @keyframes pulse {
376
+ 0% { opacity: 0.6; }
377
+ 50% { opacity: 1; }
378
+ 100% { opacity: 0.6; }
379
+ }
380
+
381
+ .pulsing {
382
+ animation: pulse 2s infinite;
383
+ }
384
+
385
+ @keyframes evolve {
386
+ 0% { transform: scale(1); }
387
+ 50% { transform: scale(1.05); }
388
+ 100% { transform: scale(1); }
389
+ }
390
+
391
+ .evolving {
392
+ animation: evolve 1s ease-in-out;
393
+ }
394
+
395
+ @keyframes recursion {
396
+ 0% { transform: scale(1) rotate(0deg); }
397
+ 50% { transform: scale(1.05) rotate(180deg); }
398
+ 100% { transform: scale(1) rotate(360deg); }
399
+ }
400
+
401
+ .recursing {
402
+ animation: recursion 3s infinite linear;
403
+ }
404
+
405
+ /* Collaborative Features */
406
+ .collaborative-controls {
407
+ display: flex;
408
+ flex-wrap: wrap;
409
+ gap: 0.5rem;
410
+ margin-top: 0.5rem;
411
+ }
412
+
413
+ .collab-btn {
414
+ background-color: var(--secondary);
415
+ color: var(--on-secondary);
416
+ border: none;
417
+ padding: 0.5rem 1rem;
418
+ border-radius: 4px;
419
+ cursor: pointer;
420
+ transition: all 0.3s ease;
421
+ font-weight: 500;
422
+ flex: 1;
423
+ }
424
+
425
+ .collab-btn:hover {
426
+ background-color: var(--secondary-dark);
427
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
428
+ }
429
+
430
+ .user-presence {
431
+ margin-top: 0.5rem;
432
+ font-size: 0.9rem;
433
+ color: var(--secondary);
434
+ }
435
+
436
+ .researchers-list {
437
+ background-color: rgba(0, 0, 0, 0.2);
438
+ padding: 0.5rem;
439
+ border-radius: 4px;
440
+ max-height: 100px;
441
+ overflow-y: auto;
442
+ margin-bottom: 1rem;
443
+ font-size: 0.9rem;
444
+ }
445
+
446
+ .researcher {
447
+ display: flex;
448
+ align-items: center;
449
+ margin-bottom: 0.3rem;
450
+ }
451
+
452
+ .researcher-color {
453
+ width: 12px;
454
+ height: 12px;
455
+ border-radius: 50%;
456
+ margin-right: 0.5rem;
457
+ }
458
+
459
+ .researcher-name {
460
+ flex: 1;
461
+ }
462
+
463
+ .shared-analyses {
464
+ margin-top: 2rem;
465
+ }
466
+
467
+ .shared-list {
468
+ max-height: 200px;
469
+ overflow-y: auto;
470
+ background-color: rgba(0, 0, 0, 0.2);
471
+ border-radius: 4px;
472
+ padding: 0.5rem;
473
+ }
474
+
475
+ .shared-analysis {
476
+ background-color: rgba(0, 0, 0, 0.3);
477
+ padding: 0.5rem;
478
+ border-radius: 4px;
479
+ margin-bottom: 0.5rem;
480
+ }
481
+
482
+ .shared-header {
483
+ display: flex;
484
+ justify-content: space-between;
485
+ margin-bottom: 0.3rem;
486
+ font-size: 0.9rem;
487
+ color: var(--secondary);
488
+ }
489
+
490
+ .shared-content {
491
+ padding: 0.5rem;
492
+ background-color: rgba(0, 0, 0, 0.2);
493
+ border-radius: 4px;
494
+ margin-top: 0.3rem;
495
+ }
496
+
497
+ .user-cursor {
498
+ position: absolute;
499
+ width: 20px;
500
+ height: 20px;
501
+ border-radius: 50%;
502
+ pointer-events: none;
503
+ z-index: 100;
504
+ }
505
+
506
+ .notification {
507
+ position: fixed;
508
+ bottom: 20px;
509
+ right: 20px;
510
+ padding: 10px 20px;
511
+ background-color: var(--notification-bg);
512
+ color: var(--notification-text);
513
+ border-radius: 4px;
514
+ z-index: 1000;
515
+ opacity: 0;
516
+ transform: translateY(20px);
517
+ transition: opacity 0.3s, transform 0.3s;
518
+ }
519
+
520
+ .notification.show {
521
+ opacity: 1;
522
+ transform: translateY(0);
523
+ }
524
+
525
+ /* Mobile Responsiveness */
526
+ @media (max-width: 768px) {
527
+ .container {
528
+ padding: 0.5rem;
529
+ }
530
+
531
+ h1 {
532
+ font-size: 1.8rem;
533
+ }
534
+
535
+ h2 {
536
+ font-size: 1rem;
537
+ }
538
+
539
+ .controls {
540
+ flex-direction: column;
541
+ }
542
+
543
+ #visualization {
544
+ height: 200px;
545
+ }
546
+
547
+ .control-panel, .info-panel {
548
+ width: 100%;
549
+ }
550
+
551
+ .collaborative-controls {
552
+ flex-direction: column;
553
+ }
554
+
555
+ .shared-analyses {
556
+ max-height: 150px;
557
+ }
558
+ }