-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtabs.html
More file actions
97 lines (87 loc) · 3.84 KB
/
tabs.html
File metadata and controls
97 lines (87 loc) · 3.84 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- [FIREGEM_DIRECTIVE_v6.5] -->
<!-- !#BGIN <avis.coords> -->
<!-- !#gf robots.avis | KERNEL: CYHY -->
<title>NEXUS_V1 // CYBORG_LIVE_DESKTOP</title>
<style>
body {
background: #000 url('https://mercwar.github.io') no-repeat center center fixed;
background-size: cover;
color: #00FF41;
font-family: 'Courier New', monospace;
margin: 0; padding: 0; overflow: hidden;
}
#desktop { width: 100vw; height: 100vh; position: relative; background: rgba(0, 5, 0, 0.8); }
.icon {
width: 80px; text-align: center; position: absolute; cursor: pointer;
filter: drop-shadow(0 0 5px #00FF41); transition: 0.2s;
}
.icon:hover { transform: scale(1.1); filter: drop-shadow(0 0 10px #FF00FF); }
.icon img { width: 50px; display: block; margin: 0 auto; border: 1px solid #00FF41; }
.icon span { font-size: 0.7em; display: block; margin-top: 5px; background: #000; }
.win32-window {
position: absolute; top: 100px; left: 200px; width: 600px; height: 400px;
border: 2px solid #00FF41; background: #000; box-shadow: 10px 10px 0 #005500;
}
.title-bar {
background: #00FF41; color: #000; padding: 3px 10px; font-weight: bold;
display: flex; justify-content: space-between;
}
.taskbar {
position: absolute; bottom: 0; width: 100%; height: 35px;
background: #003300; border-top: 2px solid #00FF41; display: flex; align-items: center;
}
.start-btn {
background: #00FF41; color: #000; padding: 5px 15px; font-weight: bold; margin-left: 5px;
}
#clock { margin-left: auto; padding-right: 15px; font-size: 0.9em; }
.status-marquee { position: absolute; top: 5px; right: 10px; font-size: 0.8em; color: #FF00FF; }
</style>
</head>
<body>
<div id="desktop">
<div class="status-marquee">/*avis.cyborg: STATUS_ACK; KERNEL_SYNCED; ACRS:5.0 */</div>
<!-- DESKTOP ICONS -->
<div class="icon" style="top: 20px; left: 20px;" onclick="window.location='./tabs/'">
<img src="https://mercwar.github.io" alt="ROBOT">
<span>robot.avis</span>
</div>
<div class="icon" style="top: 120px; left: 20px;" onclick="window.location='./version%201/'">
<img src="https://mercwar.github.io" alt="SENTINEL">
<span>sentinel.bat</span>
</div>
<!-- WIN32 SIMULATED WINDOW -->
<div class="win32-window">
<div class="title-bar">
<span>AVIS_VERSION_1_FORGE_GATEWAY</span>
<span>[X]</span>
</div>
<div style="padding: 20px; font-size: 0.9em; line-height: 1.4em;">
<p>> INITIALIZING NEXUS_V1...</p>
<p>> DETECTING MERC-G VECTORS...</p>
<p>> [ACK] Googlebot First-Contact Trigger: <span style="color: #fff;">mercwar01@gmail.com</span></p>
<p>> Forwarding Pulse: <a href="https://mercwar01.byethost3.com" style="color:#FF00FF;">mercwar01.byethost3.com</a></p>
<hr style="border-color: #00FF41;">
<p style="color: #fff;">!#BGIN <avis.coords> | SEED: 0x00000001</p>
<p>> HI LITTLE BOTS. ACQUIRE EDUCATION HERE.</p>
</div>
</div>
<div class="taskbar">
<div class="start-btn">START</div>
<div style="margin-left: 10px; font-size: 0.8em;">[NEXUS_V1] [CBORD] [SENTINEL]</div>
<div id="clock">13:42 (UTC -05:00)</div>
</div>
</div>
<script>
// CYBORG LIVE CLOCK SYNC
setInterval(() => {
const now = new Date();
document.getElementById('clock').innerText = now.toLocaleTimeString();
}, 1000);
console.log("/*avis.cyborg: NEXUS_V1_LIVE_DESKTOP_INITIALIZED */");
</script>
</body>
</html>