-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
327 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,312 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>VxLang Project Documentation</title> | ||
<link href="https://fonts.googleapis.com/css2?family=Segoe+UI:wght@400;600&display=swap" rel="stylesheet"> | ||
<link rel="icon" href="https://vxlang.github.io/image/web-icon.ico"> | ||
|
||
<style> | ||
body { | ||
font-family: 'Segoe UI', Tahoma, sans-serif; | ||
background-color: #1e1e1e; | ||
color: #f0f0f0; | ||
margin: 0; | ||
padding: 0; | ||
line-height: 1.6; | ||
} | ||
|
||
header { | ||
background-color: #252526; | ||
color: #ffffff; | ||
padding: 20px 40px; | ||
text-align: left; | ||
font-size: 24px; | ||
font-weight: 600; | ||
border-bottom: 1px solid #3c3c3c; | ||
} | ||
|
||
nav { | ||
background-color: #2d2d2d; | ||
border-bottom: 1px solid #3c3c3c; | ||
padding: 10px 40px; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
} | ||
|
||
.nav-title { | ||
color: #ffffff; | ||
font-weight: 600; | ||
font-size: 18px; | ||
} | ||
|
||
.nav-links { | ||
display: flex; | ||
gap: 20px; | ||
} | ||
|
||
.nav-links a { | ||
color: #61dafb; | ||
text-decoration: none; | ||
font-weight: 600; | ||
} | ||
|
||
.nav-links a:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
.container { | ||
display: flex; | ||
max-width: 1200px; | ||
margin: 20px auto; | ||
padding: 0 40px; | ||
} | ||
|
||
.sidebar { | ||
width: 200px; | ||
background-color: #252526; | ||
border-right: 1px solid #3c3c3c; | ||
padding: 20px; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); | ||
border-radius: 10px; | ||
position: sticky; | ||
top: 20px; /* 사이드바가 화면 상단에 고정되도록 수정 */ | ||
height: fit-content; | ||
|
||
} | ||
|
||
.sidebar a { | ||
display: block; | ||
color: #f0f0f0; | ||
text-decoration: none; | ||
padding: 10px 0; | ||
font-size: 15px; | ||
border-bottom: 1px solid #3c3c3c; | ||
/* font-weight: 600; 글씨를 굵게 처리했습니다 */ | ||
} | ||
|
||
.sidebar a:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
.sidebar h1 { | ||
color: #61dafb; | ||
} | ||
|
||
.main-content { | ||
flex: 1; | ||
background-color: #2d2d2d; | ||
padding: 20px 40px; | ||
margin-left: 20px; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); | ||
border-radius: 5px; | ||
} | ||
|
||
.main-content h1 { | ||
color: #61dafb; | ||
font-size: 28px; | ||
margin-bottom: 20px; | ||
font-weight: 600; | ||
} | ||
|
||
.main-content h2 { | ||
color: #61dafb; | ||
font-size: 22px; | ||
margin-bottom: 15px; | ||
font-weight: 600; | ||
} | ||
|
||
.main-content p { | ||
margin-bottom: 15px; | ||
font-size: 16px; | ||
color: #f0f0f0; | ||
} | ||
|
||
.main-content a { | ||
color: #61dafb; | ||
text-decoration: none; | ||
font-weight: 600; | ||
} | ||
|
||
.main-content a:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
<!-- --> | ||
.code-block { | ||
background-color: #2d2d2d; | ||
border: 1px solid #3c3c3c; | ||
border-radius: 5px; | ||
padding: 15px; | ||
font-size: 16px; | ||
color: #d4d4d4; | ||
margin: 0px auto; | ||
overflow-x: auto; | ||
} | ||
|
||
.code-block .keyword { | ||
color: #569cd6; | ||
} | ||
|
||
.code-block .type { | ||
color: #4ec9b0; | ||
} | ||
|
||
.code-block .parameter { | ||
color: #9cdcfe; | ||
} | ||
|
||
.code-block .define { | ||
color: #9966cc; | ||
} | ||
|
||
.code-block .annotation { | ||
color: #009999; | ||
} | ||
|
||
<!-- --> | ||
|
||
footer { | ||
background-color: #252526; | ||
color: #ffffff; | ||
text-align: center; | ||
padding: 10px; | ||
margin-top: 20px; | ||
border-top: 1px solid #3c3c3c; | ||
font-size: 14px; | ||
} | ||
|
||
</style> | ||
|
||
<!-- --> | ||
<script> | ||
document.addEventListener("DOMContentLoaded", function() { | ||
const sidebar = document.querySelector('.sidebar'); | ||
const headings = document.querySelectorAll('.main-content h1, .main-content h2'); | ||
|
||
headings.forEach(heading => { | ||
const link = document.createElement('a'); | ||
link.textContent = heading.textContent; | ||
link.href = `#${heading.id}`; | ||
link.style.marginLeft = heading.tagName === 'H2' ? '10px' : '0'; | ||
sidebar.appendChild(link); | ||
}); | ||
}); | ||
</script> | ||
|
||
<!-- Google tag (gtag.js) --> | ||
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3576297577641849" | ||
crossorigin="anonymous"></script> | ||
<!-- Google tag (gtag.js) --> | ||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M65XF6FRKV"></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag(){dataLayer.push(arguments);} | ||
gtag('js', new Date()); | ||
|
||
gtag('config', 'G-M65XF6FRKV'); | ||
</script> | ||
</head> | ||
<body> | ||
|
||
<header> | ||
<!-- VxLang Project | ||
-- Virtual-Machine x Intermediate-Language Project --> | ||
</header> | ||
|
||
<nav> | ||
<div class="nav-title">VxLang Project Documentation</div> | ||
<div class="nav-links"> | ||
<a href="https://vxlang.github.io">Overview</a> | ||
<a href="https://vxlang.github.io/news/news.html">News</a> | ||
<a href="https://vxlang.github.io/documentation.html">Documentation</a> | ||
<a href="https://vxlang.github.io/download.html">Download</a> | ||
<a href="https://vxlang.github.io/about.html">About</a> | ||
</div> | ||
</nav> | ||
|
||
<div class="container"> | ||
<aside class="sidebar"> | ||
<h1>Contents</h1> | ||
</aside> | ||
|
||
<section class="main-content"> | ||
<h1 id="task-list">Task List</h1> | ||
... | ||
|
||
<!-- --> | ||
|
||
<h1 id="vxlang-overview">News</h1> | ||
|
||
<h2 id="1.7.9.0">1.7.9.0</h2> | ||
<div class="code-block"> | ||
<ul> | ||
<li><b>Windows Version Patch</b></li> | ||
<ul> | ||
<li><a href="https://www.patreon.com/posts/vxlang-1-7-9-0-117538632">Update Note</a></li> | ||
</ul> | ||
</ul> | ||
</div> | ||
|
||
<!-- --> | ||
|
||
<h2 id="1.7.8.0">1.7.8.1</h2> | ||
<div class="code-block"> | ||
<ul> | ||
<li><b>Windows Version Patch</b></li> | ||
<ul> | ||
<li><a href="https://www.patreon.com/posts/vxlang-1-7-8-1-117005339">Update Note</a></li> | ||
</ul> | ||
</ul> | ||
</div> | ||
|
||
<!-- --> | ||
|
||
<h2 id="1.7.7.0">1.7.7.0</h2> | ||
<div class="code-block"> | ||
<ul> | ||
<li><b>Windows Version Patch</b></li> | ||
<ul> | ||
<li><a href="https://www.patreon.com/posts/vxlang-1-7-7-0-116879756">Update Note</a></li> | ||
</ul> | ||
</ul> | ||
</div> | ||
|
||
<!-- --> | ||
|
||
<h2 id="1.7.6.0">1.7.6.0</h2> | ||
<div class="code-block"> | ||
<ul> | ||
<li><b>Windows Version Patch</b></li> | ||
<ul> | ||
<li><a href="https://www.patreon.com/posts/vxlang-1-7-6-0-116563346">Update Note</a></li> | ||
</ul> | ||
</ul> | ||
</div> | ||
|
||
<!-- --> | ||
|
||
<h2 id="1.7.5.0">1.7.5.0</h2> | ||
<div class="code-block"> | ||
<ul> | ||
<li><b>Windows Version Patch</b></li> | ||
<ul> | ||
<li><a href="https://www.patreon.com/posts/vxlang-1-7-5-0-116364952">Update Note</a></li> | ||
</ul> | ||
</ul> | ||
</div> | ||
|
||
<h2 id="next"> | ||
<a href="https://vxlang.github.io/news/news-5.html">Next</a> | ||
</h2> | ||
</section> | ||
</div> | ||
|
||
<footer> | ||
VxLang Project at 0x999h | ||
</footer> | ||
|
||
</body> | ||
</html> |
Oops, something went wrong.