mouse-vm 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/cli.js +4 -0
- package/package.json +48 -0
- package/server.js +716 -0
- package/static/app.js +1470 -0
- package/static/icons/icon-192.png +0 -0
- package/static/icons/icon-512.png +0 -0
- package/static/icons/icon.svg +38 -0
- package/static/index.html +738 -0
- package/static/manifest.json +46 -0
- package/static/style.css +2651 -0
- package/static/sw.js +85 -0
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="512" height="512">
|
|
2
|
+
<defs>
|
|
3
|
+
<linearGradient id="bg-grad" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
4
|
+
<stop offset="0%" stop-color="#080d16"/>
|
|
5
|
+
<stop offset="100%" stop-color="#020408"/>
|
|
6
|
+
</linearGradient>
|
|
7
|
+
<linearGradient id="cyan-blue" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
8
|
+
<stop offset="0%" stop-color="#00f0ff"/>
|
|
9
|
+
<stop offset="100%" stop-color="#22a0ff"/>
|
|
10
|
+
</linearGradient>
|
|
11
|
+
<filter id="glow" x="-20%" y="-20%" width="140%" height="140%">
|
|
12
|
+
<feGaussianBlur stdDeviation="12" result="blur"/>
|
|
13
|
+
<feComposite in="SourceGraphic" in2="blur" operator="over"/>
|
|
14
|
+
</filter>
|
|
15
|
+
</defs>
|
|
16
|
+
<!-- App Background Tile with rounded corners -->
|
|
17
|
+
<rect width="512" height="512" rx="110" fill="url(#bg-grad)"/>
|
|
18
|
+
<rect width="504" height="504" x="4" y="4" rx="106" fill="none" stroke="url(#cyan-blue)" stroke-width="4" opacity="0.3"/>
|
|
19
|
+
|
|
20
|
+
<!-- Glowing Center Mouse Body -->
|
|
21
|
+
<g transform="translate(106, 76)" filter="url(#glow)">
|
|
22
|
+
<!-- Mouse Outer Body -->
|
|
23
|
+
<rect x="50" y="30" width="200" height="300" rx="100" fill="none" stroke="url(#cyan-blue)" stroke-width="16"/>
|
|
24
|
+
<!-- Divider Line -->
|
|
25
|
+
<line x1="150" y1="30" x2="150" y2="150" stroke="url(#cyan-blue)" stroke-width="14" stroke-linecap="round"/>
|
|
26
|
+
<line x1="50" y1="150" x2="250" y2="150" stroke="url(#cyan-blue)" stroke-width="12" opacity="0.5"/>
|
|
27
|
+
|
|
28
|
+
<!-- Scroll Wheel Glowing Indicator -->
|
|
29
|
+
<rect x="136" y="90" width="28" height="46" rx="14" fill="#00f0ff" opacity="0.9"/>
|
|
30
|
+
|
|
31
|
+
<!-- Keyboard Keys Accent Grid below -->
|
|
32
|
+
<rect x="85" y="210" width="30" height="24" rx="6" fill="url(#cyan-blue)" opacity="0.8"/>
|
|
33
|
+
<rect x="135" y="210" width="30" height="24" rx="6" fill="url(#cyan-blue)" opacity="0.8"/>
|
|
34
|
+
<rect x="185" y="210" width="30" height="24" rx="6" fill="url(#cyan-blue)" opacity="0.8"/>
|
|
35
|
+
|
|
36
|
+
<rect x="95" y="246" width="110" height="20" rx="6" fill="url(#cyan-blue)" opacity="0.6"/>
|
|
37
|
+
</g>
|
|
38
|
+
</svg>
|