-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.41 KB
/
index.html
File metadata and controls
34 lines (34 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>The Watchtower</title>
<style>
body { font-family: monospace; background: #111; color: #0f0; }
#controls, #preview-container { border: 1px dashed #0f0; padding: 1em; margin: 1em; }
input { background: #222; border: 1px solid #0f0; color: #0f0; padding: 5px; }
button { background: #0f0; border: none; color: #111; padding: 5px 10px; cursor: pointer; }
#preview-wrapper { position: relative; border: 2px solid #333; }
#preview-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 10; cursor: crosshair; }
#preview-content { width: 100%; height: 80vh; overflow: auto; }
.highlight-element-on-hover { outline: 2px dashed red !important; }
</style>
</head>
<body>
<h1>[ The Watchtower ]</h1>
<div id="controls">
<input type="url" id="urlInput" placeholder="https://example.com">
<button id="fetchBtn">Fetch & Select</button>
<p>Selected Element Selector: <code id="selector-display">none</code></p>
<button id="monitorBtn">MONITOR THIS ELEMENT</button>
</div>
<div id="preview-container">
<h3>Interactive Preview</h3>
<div id="preview-wrapper">
<div id="preview-content"></div>
<div id="preview-overlay"></div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>