domma-js 0.3.0-a → 0.3.1-alpha
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/README.md +41 -0
- package/package.json +2 -1
- package/public/dist/bundles/domma-complete.css +350 -23
- package/public/dist/bundles/domma-data-focused.css +350 -23
- package/public/dist/bundles/domma-essentials.css +350 -23
- package/public/dist/bundles/domma-full.css +350 -23
- package/public/dist/bundles/domma-minimal.css +120 -12
- package/public/dist/domma.css +107 -5
- package/public/dist/domma.esm.js +5 -5
- package/public/dist/domma.min.js +5 -5
- package/public/dist/elements.css +223 -4
- package/public/dist/grid.css +4 -4
- package/public/dist/syntax.css +4 -4
- package/public/dist/themes/domma-themes.css +3468 -0
package/public/dist/domma.css
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Domma Core CSS v0.3.
|
|
2
|
+
* Domma Core CSS v0.3.0-alpha.0
|
|
3
3
|
* Dynamic Object Manipulation & Modeling API
|
|
4
|
-
* (c)
|
|
5
|
-
* Built:
|
|
6
|
-
* Commit:
|
|
4
|
+
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
5
|
+
* Built: 2026-01-02T14:32:25.385Z
|
|
6
|
+
* Commit: bc8e519
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
/**
|
|
@@ -377,11 +377,12 @@ body {
|
|
|
377
377
|
a {
|
|
378
378
|
color: var(--dm-primary);
|
|
379
379
|
text-decoration: none;
|
|
380
|
+
transition: color 0.2s ease;
|
|
380
381
|
}
|
|
381
382
|
|
|
382
383
|
a:hover {
|
|
383
384
|
color: var(--dm-primary-hover);
|
|
384
|
-
text-decoration:
|
|
385
|
+
text-decoration: none;
|
|
385
386
|
}
|
|
386
387
|
|
|
387
388
|
code, pre {
|
|
@@ -1390,6 +1391,91 @@ code, pre {
|
|
|
1390
1391
|
box-shadow: var(--dm-shadow-xl);
|
|
1391
1392
|
}
|
|
1392
1393
|
|
|
1394
|
+
/* ============================================
|
|
1395
|
+
GLOW UTILITIES
|
|
1396
|
+
============================================ */
|
|
1397
|
+
|
|
1398
|
+
.glow-sm {
|
|
1399
|
+
text-shadow: var(--dm-glow-sm);
|
|
1400
|
+
transition: text-shadow 0.3s ease;
|
|
1401
|
+
}
|
|
1402
|
+
|
|
1403
|
+
.glow {
|
|
1404
|
+
text-shadow: var(--dm-glow);
|
|
1405
|
+
transition: text-shadow 0.3s ease;
|
|
1406
|
+
}
|
|
1407
|
+
|
|
1408
|
+
.glow-md {
|
|
1409
|
+
text-shadow: var(--dm-glow-md);
|
|
1410
|
+
transition: text-shadow 0.3s ease;
|
|
1411
|
+
}
|
|
1412
|
+
|
|
1413
|
+
.glow-lg {
|
|
1414
|
+
text-shadow: var(--dm-glow-lg);
|
|
1415
|
+
transition: text-shadow 0.3s ease;
|
|
1416
|
+
}
|
|
1417
|
+
|
|
1418
|
+
.glow-xl {
|
|
1419
|
+
text-shadow: var(--dm-glow-xl);
|
|
1420
|
+
transition: text-shadow 0.3s ease;
|
|
1421
|
+
}
|
|
1422
|
+
|
|
1423
|
+
.glow-primary {
|
|
1424
|
+
text-shadow: var(--dm-glow-primary);
|
|
1425
|
+
transition: text-shadow 0.3s ease;
|
|
1426
|
+
}
|
|
1427
|
+
|
|
1428
|
+
.glow-secondary {
|
|
1429
|
+
text-shadow: var(--dm-glow-secondary);
|
|
1430
|
+
transition: text-shadow 0.3s ease;
|
|
1431
|
+
}
|
|
1432
|
+
|
|
1433
|
+
.glow-success {
|
|
1434
|
+
text-shadow: var(--dm-glow-success);
|
|
1435
|
+
transition: text-shadow 0.3s ease;
|
|
1436
|
+
}
|
|
1437
|
+
|
|
1438
|
+
.glow-warning {
|
|
1439
|
+
text-shadow: var(--dm-glow-warning);
|
|
1440
|
+
transition: text-shadow 0.3s ease;
|
|
1441
|
+
}
|
|
1442
|
+
|
|
1443
|
+
.glow-danger {
|
|
1444
|
+
text-shadow: var(--dm-glow-danger);
|
|
1445
|
+
transition: text-shadow 0.3s ease;
|
|
1446
|
+
}
|
|
1447
|
+
|
|
1448
|
+
.glow-info {
|
|
1449
|
+
text-shadow: var(--dm-glow-info);
|
|
1450
|
+
transition: text-shadow 0.3s ease;
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1453
|
+
/* Hover variants */
|
|
1454
|
+
.glow-hover:hover {
|
|
1455
|
+
text-shadow: var(--dm-glow);
|
|
1456
|
+
transition: text-shadow 0.3s ease;
|
|
1457
|
+
}
|
|
1458
|
+
|
|
1459
|
+
.glow-primary-hover:hover {
|
|
1460
|
+
text-shadow: var(--dm-glow-primary);
|
|
1461
|
+
transition: text-shadow 0.3s ease;
|
|
1462
|
+
}
|
|
1463
|
+
|
|
1464
|
+
.glow-success-hover:hover {
|
|
1465
|
+
text-shadow: var(--dm-glow-success);
|
|
1466
|
+
transition: text-shadow 0.3s ease;
|
|
1467
|
+
}
|
|
1468
|
+
|
|
1469
|
+
.glow-warning-hover:hover {
|
|
1470
|
+
text-shadow: var(--dm-glow-warning);
|
|
1471
|
+
transition: text-shadow 0.3s ease;
|
|
1472
|
+
}
|
|
1473
|
+
|
|
1474
|
+
.glow-danger-hover:hover {
|
|
1475
|
+
text-shadow: var(--dm-glow-danger);
|
|
1476
|
+
transition: text-shadow 0.3s ease;
|
|
1477
|
+
}
|
|
1478
|
+
|
|
1393
1479
|
/* ============================================
|
|
1394
1480
|
SIZE UTILITIES
|
|
1395
1481
|
============================================ */
|
|
@@ -2311,4 +2397,20 @@ code, pre {
|
|
|
2311
2397
|
--dm-black-t30: rgba(0, 0, 0, 0.3);
|
|
2312
2398
|
--dm-black-t50: rgba(0, 0, 0, 0.5);
|
|
2313
2399
|
--dm-black-t70: rgba(0, 0, 0, 0.7);
|
|
2400
|
+
|
|
2401
|
+
/* ================================================
|
|
2402
|
+
GLOW EFFECTS
|
|
2403
|
+
================================================ */
|
|
2404
|
+
--dm-glow-sm: 0 0 8px rgba(255, 255, 255, 0.3);
|
|
2405
|
+
--dm-glow: 0 0 15px rgba(255, 255, 255, 0.5);
|
|
2406
|
+
--dm-glow-md: 0 0 20px rgba(255, 255, 255, 0.6);
|
|
2407
|
+
--dm-glow-lg: 0 0 30px rgba(255, 255, 255, 0.7);
|
|
2408
|
+
--dm-glow-xl: 0 0 40px rgba(255, 255, 255, 0.8);
|
|
2409
|
+
|
|
2410
|
+
--dm-glow-primary: 0 0 20px rgba(59, 130, 246, 0.6);
|
|
2411
|
+
--dm-glow-secondary: 0 0 20px rgba(139, 92, 246, 0.6);
|
|
2412
|
+
--dm-glow-success: 0 0 20px rgba(34, 197, 94, 0.6);
|
|
2413
|
+
--dm-glow-warning: 0 0 20px rgba(245, 158, 11, 0.6);
|
|
2414
|
+
--dm-glow-danger: 0 0 20px rgba(239, 68, 68, 0.6);
|
|
2415
|
+
--dm-glow-info: 0 0 20px rgba(14, 165, 233, 0.6);
|
|
2314
2416
|
}
|