feat: new file

This commit is contained in:
Daniel
2026-03-01 17:21:15 +08:00
commit d705fd6c83
28 changed files with 5877 additions and 0 deletions

50
src/index.css Normal file
View File

@@ -0,0 +1,50 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--bg-dark: #0A0F1C;
}
* {
box-sizing: border-box;
}
html,
body,
#root {
margin: 0;
padding: 0;
min-height: 100vh;
min-height: 100dvh;
min-width: 100vw;
height: 100%;
background: var(--bg-dark);
color: #F3F4F6;
font-family: 'Orbitron', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Military-grade high-contrast typography */
.font-orbitron {
font-family: 'Orbitron', sans-serif;
}
/* Tabular numbers for aligned stat display */
.tabular-nums {
font-variant-numeric: tabular-nums;
}
/* Thin scrollbar for value overflow */
.scrollbar-thin::-webkit-scrollbar {
width: 4px;
height: 4px;
}
.scrollbar-thin::-webkit-scrollbar-track {
background: transparent;
}
.scrollbar-thin::-webkit-scrollbar-thumb {
background: rgba(75, 85, 99, 0.5);
border-radius: 2px;
}