-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (83 loc) · 2.29 KB
/
index.html
File metadata and controls
102 lines (83 loc) · 2.29 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
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Overview</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A web-based implementation focused on practical functionality and a clearly defined workflow, intended for direct use and exploration.">
<style>
body {
margin: 0;
padding: 40px 20px;
font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
background: #0b0f0b;
color: #d0ffd0;
line-height: 1.6;
}
.container {
max-width: 760px;
margin: auto;
}
h1 {
color: #00ff00;
font-size: 1.4rem;
margin-bottom: 1em;
font-weight: 600;
}
p {
margin-bottom: 1em;
opacity: 0.95;
}
a.primary-link {
display: inline-block;
margin-top: 24px;
padding: 12px 22px;
border: 1px solid #00ff00;
color: #00ff00;
text-decoration: none;
font-weight: 600;
}
a.primary-link:hover {
background: #00ff00;
color: #000;
}
footer {
margin-top: 48px;
font-size: 0.85rem;
opacity: 0.65;
}
</style>
</head>
<body>
<div class="container">
<!-- ============================= -->
<!-- ABOUT THIS BUILD -->
<!-- ============================= -->
<div id="build-info">
<h1>Implementation Overview</h1>
<p>
This page hosts VoidCode Monaco, a compact, browser-based code editor
built using HTML, CSS, and JavaScript, powered internally by the Monaco Editor engine.
</p>
<p>
VoidCode runs entirely on the client side, works offline(once cached), and focuses on clarity, control, and direct interaction with code.
</p>
<p>
Source files, version history, and related work are maintained in the
repository associated with this page.
</p>
<a class="primary-link" href="versions/v1.0/single-file/voidcode-monaco.html">
▶ Open Live Implementation
</a>
</div>
<!-- ============================= -->
<!-- END -->
<!-- ============================= -->
<footer>
<p>
Web-based implementation · Repository hosted
</p>
</footer>
</div>
</body>
</html>