item-track/web/index.html
2026-04-23 20:41:32 +08:00

83 lines
1.8 KiB
HTML

<!doctype html>
<html lang="">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>归物 - Item Tracker</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #ffffff;
color: #1f2937;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif;
line-height: 1.5;
min-height: 100vh;
}
:root {
--bg-primary: #ffffff;
--bg-secondary: #f9fafb;
--bg-tertiary: #f3f4f6;
--border-color: #e5e7eb;
--border-dark: #d1d5db;
--text-primary: #1f2937;
--text-secondary: #4b5563;
--text-muted: #6b7280;
--accent-blue: #2563eb;
--accent-green: #059669;
--accent-purple: #7c3aed;
--accent-red: #dc2626;
--accent-yellow: #d97706;
--font-mono: 'JetBrains Mono', 'Fira Code', 'SF Mono', Monaco, Consolas, monospace;
}
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #f3f4f6;
}
::-webkit-scrollbar-thumb {
background: #d1d5db;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #9ca3af;
}
::selection {
background: rgba(37, 99, 235, 0.2);
color: #1f2937;
}
a {
color: var(--accent-blue);
text-decoration: none;
transition: color 0.2s ease;
}
a:hover {
color: #1d4ed8;
}
</style>