-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (69 loc) · 2.63 KB
/
index.html
File metadata and controls
71 lines (69 loc) · 2.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Icon格式转化器-Windows,MacOS多尺寸图标一键转格式</title>
<script src="https://cdn.tailwindcss.com"></script>
<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=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Space Mono', monospace;
background-color: #09090b;
background-image:
linear-gradient(rgba(18, 18, 18, 0.8) 1px, transparent 1px),
linear-gradient(90deg, rgba(18, 18, 18, 0.8) 1px, transparent 1px);
background-size: 20px 20px;
}
/* Custom scrollbar for webkit */
::-webkit-scrollbar {
width: 12px;
background: #09090b;
}
::-webkit-scrollbar-track {
background: #09090b;
border-left: 1px solid #27272a;
}
::-webkit-scrollbar-thumb {
background: #f97316;
border: 2px solid #09090b;
}
::-webkit-scrollbar-thumb:hover {
background: #ea580c;
}
/* Retro CRT Scanline effect (subtle) */
.scanlines::before {
content: " ";
display: block;
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
z-index: 9999;
background-size: 100% 2px, 3px 100%;
pointer-events: none;
}
</style>
<script type="importmap">
{
"imports": {
"react/": "https://aistudiocdn.com/react@^19.2.0/",
"react": "https://aistudiocdn.com/react@^19.2.0",
"lucide-react": "https://aistudiocdn.com/lucide-react@^0.555.0",
"@google/genai": "https://aistudiocdn.com/@google/genai@^1.30.0",
"react-dom/": "https://aistudiocdn.com/react-dom@^19.2.0/",
"vite": "https://aistudiocdn.com/vite@^7.2.6",
"@vitejs/plugin-react": "https://aistudiocdn.com/@vitejs/plugin-react@^5.1.1"
}
}
</script>
</head>
<body class="bg-zinc-950 text-zinc-300 min-h-screen antialiased selection:bg-orange-500 selection:text-black">
<div id="root" class="scanlines"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>