|
2 | 2 | <html lang="en"> |
3 | 3 | <head> |
4 | 4 | <meta charset="UTF-8"> |
5 | | - <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
6 | | - <title>pobfus | .cs Ghost-Shift (Sentinel)</title> |
| 5 | + <title>Pobfus | Repository</title> |
| 6 | + <link href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&family=Inter:wght@400;700&display=swap" rel="stylesheet"> |
| 7 | + <style> |
| 8 | + :root { |
| 9 | + --bg: #050505; |
| 10 | + --cobalt: #2e5bff; |
| 11 | + --fira: 'Fira Code', monospace; |
| 12 | + } |
| 13 | + body { background-color: var(--bg); color: #c0c9e0; font-family: 'Inter', sans-serif; margin: 0; display: flex; height: 100vh; overflow: hidden; } |
| 14 | + |
| 15 | + .sidebar { |
| 16 | + width: 380px; background: #0a0a0a; border-right: 1px solid #1a1a1a; |
| 17 | + padding: 30px; display: flex; flex-direction: column; |
| 18 | + } |
| 19 | + |
| 20 | + .header-icons { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; } |
| 21 | + .icon-git { width: 45px; filter: invert(1); } |
| 22 | + .icon-lua { width: 45px; } |
| 23 | + |
| 24 | + .version-tab { |
| 25 | + background: #000; border: 1px solid #1a1a1a; border-radius: 4px; |
| 26 | + padding: 10px; margin-top: 10px; font-family: var(--fira); font-size: 11px; |
| 27 | + } |
| 28 | + .version-label { color: #444; text-transform: uppercase; letter-spacing: 1px; font-size: 9px; } |
| 29 | + .version-value { color: var(--cobalt); font-weight: bold; } |
| 30 | + |
| 31 | + #output { |
| 32 | + flex: 1; background: #000; color: #79c0ff; padding: 40px; |
| 33 | + font-size: 11px; white-space: pre-wrap; overflow-y: auto; |
| 34 | + border-top: 1px solid #1a1a1a; font-family: var(--fira); |
| 35 | + } |
| 36 | + #status-terminal { |
| 37 | + margin-top: 15px; width: 100%; height: 120px; background: #000; |
| 38 | + border: 1px solid #1a1a1a; border-radius: 4px; font-family: var(--fira); |
| 39 | + font-size: 10px; color: #444; padding: 10px; overflow-y: auto; |
| 40 | + } |
| 41 | + |
| 42 | + .btn-group { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; } |
| 43 | + .action-btn { |
| 44 | + width: 100%; background: var(--cobalt); color: #fff; border: 0; |
| 45 | + padding: 15px; cursor: pointer; font-weight: 700; border-radius: 4px; |
| 46 | + font-size: 12px; transition: opacity 0.2s; |
| 47 | + } |
| 48 | + .action-btn.secondary { background: #1a1a1a; color: #666; } |
| 49 | + .action-btn:hover { opacity: 0.8; } |
| 50 | + </style> |
7 | 51 | </head> |
8 | | -<body style="background-color:#0d1117;color:#c9d1d9;font-family:monospace;margin:0;display:flex;height:100vh;overflow:hidden;"> |
| 52 | +<body> |
9 | 53 |
|
10 | | - <div style="width:340px;background:#161b22;border-right:1px solid #30363d;padding:25px;display:flex;flex-direction:column;box-shadow: 5px 0 15px rgba(0,0,0,0.3);"> |
11 | | - <h2 style="color:#fff;margin:0;letter-spacing:1px;">pobfus<span style="color:#00A2FF;">.cs</span></h2> |
12 | | - <p style="font-size:10px;color:#444;margin-bottom:20px;">SENTINEL BUILD (DARK-LOGIC)</p> |
| 54 | + <div class="sidebar"> |
| 55 | + <div class="header-icons"> |
| 56 | + <img src="https://cdn-icons-png.flaticon.com/512/25/25231.png" class="icon-git" alt="GitHub"> |
| 57 | + <img src="https://upload.wikimedia.org/wikipedia/commons/c/cf/Lua-logo-nolabel.svg" class="icon-lua" alt="Lua"> |
| 58 | + </div> |
| 59 | + |
| 60 | + <h1 style="font-size:32px; margin:0; color:#fff; font-weight:700;">Pobfus</h1> |
13 | 61 |
|
14 | | - <div style="background:#0d1117;border:1px solid #30363d;padding:12px;border-radius:6px;margin-bottom:25px;"> |
15 | | - <div style="font-size:9px;color:#8b949e;text-transform:uppercase;margin-bottom:8px;">Developer Profile</div> |
16 | | - <div style="display:flex;align-items:center;gap:10px;"> |
17 | | - <div style="width:8px;height:8px;background:#238636;border-radius:50%;"></div> |
18 | | - <span style="font-size:12px;color:#fff;font-weight:bold;">tenringsofdoom1x</span> |
19 | | - </div> |
20 | | - <div style="font-size:11px;color:#58a6ff;margin-top:5px;">ID: 3481924324</div> |
21 | | - <a href="https://tenringsofdoom1x.github.io" target="_blank" style="display:block;margin-top:10px;padding:6px;background:#21262d;color:#c9d1d9;text-align:center;text-decoration:none;font-size:10px;border-radius:4px;border:1px solid #30363d;">VIEW SITE ↗</a> |
| 62 | + <div class="version-tab"> |
| 63 | + <div class="version-label">Build Engine</div> |
| 64 | + <div class="version-value">v1.13.0978-6</div> |
| 65 | + <div style="margin-top:5px;" class="version-label">Protocol</div> |
| 66 | + <div class="version-value">Legacy 10->27 Shift</div> |
| 67 | + </div> |
| 68 | + |
| 69 | + <div style="background:var(--bg); border:1px solid #1a1a1a; padding:35px; border-radius:10px; display:flex; flex-direction:column; align-items:center; margin-top:20px;"> |
| 70 | + <div style="font-size:12px; color:var(--cobalt); font-family:var(--fira);" id="status">READY</div> |
| 71 | + <div id="status-terminal"></div> |
22 | 72 | </div> |
23 | 73 |
|
24 | | - <button id="goBtn" style="width:100%;background:#238636;color:#fff;border:0;padding:15px;border-radius:6px;cursor:pointer;font-weight:bold;font-size:13px;transition:0.2s;border-bottom:3px solid #1a6328;">GENERATE SENTINEL</button> |
25 | | - <button id="dlBtn" style="width:100%;background:#21262d;color:#fff;border:1px solid #30363d;padding:12px;border-radius:6px;cursor:pointer;font-weight:bold;font-size:12px;margin-top:10px;display:none;transition:0.2s;">DOWNLOAD .LUA</button> |
| 74 | + <div class="btn-group"> |
| 75 | + <button id="goBtn" class="action-btn">BUILD & ENCRYPT</button> |
| 76 | + <button id="clearBtn" class="action-btn secondary">CLEAR BUFFER</button> |
| 77 | + </div> |
26 | 78 | </div> |
27 | 79 |
|
28 | | - <div style="flex:1;display:flex;flex-direction:column;"> |
29 | | - <textarea id="input" style="flex:1;background:#0d1117;color:#79c0ff;padding:30px;border:0;outline:0;font-size:13px;resize:none;" placeholder="-- Paste Source Luau..."></textarea> |
30 | | - <textarea id="output" readonly style="flex:1;background:#090c10;color:#d2a8ff;padding:30px;border:0;outline:0;font-size:10px;border-top:1px solid #30363d;resize:none;" placeholder="-- Dark Logic Output..."></textarea> |
| 80 | + <div style="flex:1; display:flex; flex-direction:column;"> |
| 81 | + <textarea id="input" style="flex:1; background:#050505; color:#666; padding:40px; border:0; outline:0; font-size:14px; font-family:var(--fira); resize:none;" placeholder="-- Source code here..."></textarea> |
| 82 | + <div id="output"></div> |
31 | 83 | </div> |
32 | 84 |
|
33 | 85 | <script src="script.js"></script> |
|
0 commit comments