Skip to content

Commit f78be96

Browse files
authored
Update title and styles for Pobfus version 1.11.01
1 parent 33af22e commit f78be96

1 file changed

Lines changed: 22 additions & 47 deletions

File tree

index.html

Lines changed: 22 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -3,64 +3,39 @@
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>Pobfus v1.0.61 // tenringsofdoom1x</title>
6+
<title>Pobfus 1.11.01</title>
77
<style>
8-
:root { --bg: #0d1117; --sub: #161b22; --brd: #30363d; --txt: #c9d1d9; --acc: #58a6ff; --grn: #238636; }
9-
body { background: var(--bg); color: var(--txt); font-family: 'Segoe UI', sans-serif; margin: 0; display: flex; flex-direction: column; align-items: center; min-height: 100vh; }
10-
.header { width: 100%; background: var(--sub); padding: 12px 24px; border-bottom: 1px solid var(--brd); display: flex; justify-content: space-between; align-items: center; box-sizing: border-box; }
11-
.badge { background: rgba(88, 166, 255, 0.1); color: var(--acc); border: 1px solid rgba(88, 166, 255, 0.3); padding: 3px 12px; border-radius: 20px; font-size: 11px; font-weight: bold; }
12-
.container { width: 95%; max-width: 950px; margin: 30px 0; border: 1px solid var(--brd); background: var(--sub); border-radius: 8px; overflow: hidden; box-shadow: 0 15px 50px rgba(0,0,0,0.6); }
13-
14-
#logo {
15-
padding: 25px;
16-
background: #010409;
17-
color: var(--acc);
18-
font-family: "Courier New", monospace;
19-
font-size: 9px;
20-
line-height: 1.2;
21-
white-space: pre;
22-
overflow-x: auto;
23-
text-align: center;
24-
border-bottom: 1px solid var(--brd);
25-
margin: 0;
26-
}
27-
28-
.editor { padding: 20px; display: flex; flex-direction: column; gap: 15px; }
29-
textarea { width: 100%; height: 230px; background: #010409; color: #8b949e; border: 1px solid var(--brd); border-radius: 6px; padding: 15px; font-family: 'Consolas', monospace; font-size: 13px; box-sizing: border-box; resize: none; outline: none; }
30-
textarea:focus { border-color: var(--acc); color: #fff; }
31-
32-
.controls { display: flex; gap: 12px; flex-wrap: wrap; }
33-
.btn { padding: 10px 20px; border-radius: 5px; cursor: pointer; border: 1px solid var(--brd); background: #21262d; color: #c9d1d9; font-size: 12px; font-weight: bold; text-transform: uppercase; transition: 0.2s; }
34-
.btn:hover { background: #30363d; border-color: #8b949e; }
35-
.btn-prim { background: var(--grn); color: white; border: none; }
36-
.btn-prim:disabled { opacity: 0.5; cursor: not-allowed; filter: grayscale(1); }
37-
38-
#toast { position: fixed; top: 25px; background: var(--acc); color: #0d1117; padding: 10px 25px; border-radius: 4px; display: none; font-weight: 900; z-index: 1000; font-size: 12px; }
8+
:root { --bg: #010409; --sub: #0d1117; --brd: #30363d; --txt: #adbac7; --acc: #f69d50; }
9+
body { background: var(--bg); color: var(--txt); font-family: 'Consolas', monospace; margin: 0; display: flex; flex-direction: column; align-items: center; min-height: 100vh; overflow-x: hidden; }
10+
.header { width: 100%; background: var(--sub); padding: 15px 30px; border-bottom: 1px solid var(--brd); display: flex; justify-content: space-between; align-items: center; box-sizing: border-box; }
11+
.container { width: 95%; max-width: 1100px; margin: 40px 0; border: 1px solid var(--brd); background: var(--sub); border-radius: 6px; box-shadow: 0 0 30px rgba(0,0,0,0.7); }
12+
#logo { padding: 30px; background: #000; color: var(--acc); font-size: 11px; line-height: 1.2; white-space: pre; overflow-x: auto; text-align: center; border-bottom: 1px solid var(--brd); }
13+
.editor { padding: 25px; display: flex; flex-direction: column; gap: 20px; }
14+
textarea { width: 100%; height: 300px; background: #010409; color: #768390; border: 1px solid var(--brd); padding: 15px; font-size: 13px; outline: none; border-radius: 4px; resize: none; transition: 0.2s; }
15+
textarea:focus { border-color: var(--acc); color: #adbac7; }
16+
.btn-row { display: flex; gap: 12px; }
17+
.btn { padding: 14px 30px; cursor: pointer; border: 1px solid var(--brd); background: #21262d; color: var(--txt); font-size: 11px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; }
18+
.btn-run { background: var(--acc); color: #000; border: none; }
19+
#status { font-size: 10px; color: #484f58; font-weight: bold; font-family: 'Courier New', monospace; }
3920
</style>
4021
</head>
4122
<body>
42-
43-
<div id="toast">VERSION_1.0.61_LOADED</div>
44-
4523
<div class="header">
46-
<div style="font-weight: 800; font-size: 18px; letter-spacing: 1.5px;">POBFUS <span style="color:var(--acc)">v1.0.61</span></div>
47-
<div class="badge">LAG-SYNC ACTIVE</div>
24+
<div style="letter-spacing: 4px; font-weight: 900; font-size: 20px;">POBFUS <span style="color:var(--acc)">1.11.01</span></div>
4825
</div>
49-
5026
<div class="container">
5127
<pre id="logo"></pre>
5228
<div class="editor">
53-
<textarea id="in" placeholder="-- [ INPUT_BUFFER ]: Paste Lua code here..."></textarea>
54-
<div class="controls">
55-
<button class="btn btn-prim" id="go" onclick="run()">Protect Source</button>
56-
<button class="btn" onclick="test()">Load Sample</button>
57-
<button class="btn" onclick="copy()">Copy Output</button>
58-
<button class="btn" id="dl" style="display:none" onclick="save()">Download .lua</button>
29+
<textarea id="in" spellcheck="false" placeholder="-- [INPUT_BUFFER]"></textarea>
30+
<div id="status">ENGINE_IDLE</div>
31+
<div class="btn-row">
32+
<button class="btn btn-run" id="go"></button>
33+
<button class="btn" id="cp"></button>
34+
<button class="btn" id="dl" style="display:none"></button>
5935
</div>
60-
<textarea id="out" readonly placeholder="-- [ OUTPUT_WALL ]: Monolith v1.0.61 encrypted data..."></textarea>
36+
<textarea id="out" readonly spellcheck="false" placeholder="-- [ENCRYPTED_OUTPUT]"></textarea>
6137
</div>
6238
</div>
63-
6439
<script src="script.js"></script>
6540
</body>
66-
</html>
41+
</html>

0 commit comments

Comments
 (0)