first commit; dx 1.0 beta

This commit is contained in:
2025-11-09 22:35:16 +03:00
commit 4d01725955
153 changed files with 6504 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
@import "tailwindcss";
:root {
font-family: "Jost", sans-serif;
line-height: 1.5;
font-weight: 400;
color-scheme: dark;
color: #ffffffde;
background-color: #141414;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
* {
user-select: none;
}
/* ensure selectable elements still selectable */
.selectable,
.selectable::after,
.selectable::before,
.selectable *,
.selectable *::before,
.selectable *::after,
input {
user-select: text;
}
.bg-grain {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='noise' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.8 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.45'/%3E%3C/svg%3E");
}