Premier commit de la v2 de l'app

This commit is contained in:
UltraLionFr
2025-07-29 05:15:33 +02:00
parent 2f14898357
commit b593c60ab2
67 changed files with 5003 additions and 388 deletions
+9 -40
View File
@@ -1,42 +1,11 @@
:root {
--background: #ffffff;
--foreground: #171717;
}
@import "tailwindcss";
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}
html,
body {
max-width: 100vw;
overflow-x: hidden;
}
body {
color: var(--foreground);
background: var(--background);
font-family: Arial, Helvetica, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
a {
color: inherit;
text-decoration: none;
}
@media (prefers-color-scheme: dark) {
html {
color-scheme: dark;
}
.input {
@apply w-full rounded-md bg-[#20222e] px-10 py-2.5 text-sm text-white
placeholder-white/40 ring-1 ring-white/10 outline-none
focus:ring-2 focus:ring-indigo-500 transition;
}
.card {
@apply rounded-2xl bg-[#111320]/70 p-8 ring-1 ring-white/10 backdrop-blur
shadow-[0_6px_20px_rgba(0,0,0,0.45)];
}