-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex-v2.html
More file actions
57 lines (52 loc) · 2.64 KB
/
index-v2.html
File metadata and controls
57 lines (52 loc) · 2.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Security-Policy" content="default-src 'self' https://fonts.googleapis.com https://fonts.gstatic.com https://win98icons.alexmeub.com https://cdn.jsdelivr.net; script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; img-src 'self' data: https:; connect-src 'self';">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FURIOS-INT // CyberOS v2.6.0 (MISSION_CRITICAL)</title>
<link href="https://fonts.googleapis.com/css2?family=VT323&family=Pixelify+Sans&family=JetBrains+Mono:wght@300;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/os.css">
<style>
body { background: #000; overflow: hidden; margin: 0; }
#desktop { background-color: #008080; background-image: radial-gradient(circle at 50% 50%, #050a14 0%, #000 100%); overflow: hidden; display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); padding: 20px; gap: 20px; }
#matrix-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; opacity: 0.15; pointer-events: none; }
#boot-overlay {
position: fixed; top: 0; left: 0; width: 100%; height: 100%;
background: #000; z-index: 1000000; display: flex; flex-direction: column;
padding: 40px; font-family: 'JetBrains Mono', monospace; font-size: 14px; color: var(--cyber-green);
text-transform: uppercase; overflow-y: auto;
}
</style>
</head>
<body>
<canvas id="matrix-bg"></canvas>
<div id="desktop">
<div class="desktop-icon" onclick="window.location.href='rpg/index.html'">
<span style="font-size:32px;display:block;margin-bottom:5px;">🎮</span>
<span>CYBERWORLD RPG</span>
</div>
<div class="desktop-icon" onclick="window.location.href='stars.html'">
<span style="font-size:32px;display:block;margin-bottom:5px;">⭐</span>
<span>CYBER ARSENAL</span>
</div>
<div class="desktop-icon" onclick="window.location.href='https://github.com/Personfu/REPORTS/blob/main/FLLC_Code_Book_2026.pdf'">
<span style="font-size:32px;display:block;margin-bottom:5px;">📂</span>
<span>OFFICIAL REPORTS</span>
</div>
<div class="desktop-icon" onclick="window.location.href='https://fllc.net'">
<span style="font-size:32px;display:block;margin-bottom:5px;">🌐</span>
<span>FLLC MAINFRAME</span>
</div>
</div>
<div id="taskbar">
<div class="start-btn">
⊞ FLLC_OS
</div>
<div id="tray">
<div id="clock">13:37</div>
</div>
</div>
<script src="js/os.js"></script>
</body>
</html>