-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev.html
More file actions
84 lines (74 loc) · 2.84 KB
/
dev.html
File metadata and controls
84 lines (74 loc) · 2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LOGS | GHOSTNET</title>
<link rel="stylesheet" href="style.css">
<style>
:root {
--glow: #00ff41;
--bg: #050505;
}
body {
background-color: var(--bg);
color: var(--glow);
font-family: 'Courier New', monospace;
margin: 0;
}
.log-container {
background: #080808;
border: 1px solid rgba(0, 255, 65, 0.2);
padding: 20px;
margin-top: 20px;
}
.log-entry {
margin-bottom: 10px;
font-size: 13px;
line-height: 1.5;
}
.timestamp {
color: #555;
margin-right: 10px;
}
.version-tag {
color: #fff;
background: rgba(0, 255, 65, 0.2);
padding: 2px 6px;
border-radius: 3px;
font-size: 11px;
}
</style>
</head>
<body>
<div class="header" style="margin: 20px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--glow); padding-bottom: 10px;">
<span style="font-weight: bold;">[ GHOSTNET ]</span>
<div class="nav-links">
<a href="index.html" style="color: var(--glow); text-decoration: none; margin-left: 20px;">HOME</a>
<a href="features.html" style="color: var(--glow); text-decoration: none; margin-left: 20px;">FEATURES</a>
<a href="dev.html" style="color: var(--glow); text-decoration: none; margin-left: 20px;">LOGS</a>
</div>
</div>
<div style="padding: 20px; max-width: 900px; margin: auto;">
<h1 style="border-left: 4px solid var(--glow); padding-left: 15px;">DEVELOPMENT LOGS</h1>
<div class="log-container">
<div class="log-entry">
<span class="timestamp">[2026-01-02]</span> <span class="version-tag">v2.4</span>
Added "Isaac Surveillance" mode and custom prank-toggle logic.
</div>
<div class="log-entry">
<span class="timestamp">[2026-01-01]</span> <span class="version-tag">v2.3</span>
Integrated Flask web-server for 24/7 uptime via Render.
</div>
<div class="log-entry">
<span class="timestamp">[2025-12-28]</span> <span class="version-tag">v2.0</span>
Full rebuild of the UI framework for the Discord interaction system.
</div>
<div class="log-entry" style="color: #444;">
> Waiting for next update packet...
</div>
</div>
</div>
<script src="script.js" defer></script>
</body>
</html>