mirror of
https://github.com/Noratrieb/std-internal-docs.git
synced 2026-01-14 09:35:01 +01:00
pretty
This commit is contained in:
parent
629dd13a36
commit
1e8053fb18
3 changed files with 47 additions and 14 deletions
10
before.html
10
before.html
|
|
@ -2,8 +2,8 @@
|
|||
const info = document.createElement("div");
|
||||
info.classList.add("_internal-info");
|
||||
info.innerHTML = `
|
||||
<p>⚠ Internal Docs ⚠</p>
|
||||
<p>This website was built by <a href="https://github.com/Noratrieb/std-internal-docs">Noratrieb</a>
|
||||
<div>⚠ Internal Docs ⚠</div>
|
||||
<div>This website was built by <a href="https://github.com/Noratrieb/std-internal-docs">Noratrieb</a></div>
|
||||
|
||||
<div>
|
||||
<div>
|
||||
|
|
@ -13,9 +13,9 @@
|
|||
</div>
|
||||
<div>
|
||||
<select id="target-select">
|
||||
<option>x86_64-unknown-linux-gnu</option>
|
||||
<option>x86_64-pc-windows-msvc</option>
|
||||
<option>aarch64-apple-darwin</option>
|
||||
<option value="x86_64-unknown-linux-gnu">x86-64 GNU/Linux</option>
|
||||
<option value="x86_64-pc-windows-msvc">x86-64 Windows MSVC</option>
|
||||
<option value="aarch64-apple-darwin">ARM64 MacOS</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
46
index.html
46
index.html
|
|
@ -1,12 +1,40 @@
|
|||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta http-equiv="refresh" content="0; url=/x86_64-unknown-linux-gnu/std" />
|
||||
<title>std internal docs</title>
|
||||
<meta http-equiv="refresh" content="0; url=/x86_64-unknown-linux-gnu/std" >
|
||||
</head>
|
||||
<body>
|
||||
<div>redirecting to <a href="/x86_64-unknown-linux-gnu/std">/x86_64-unknown-linux-gnu</a></div>
|
||||
</body>
|
||||
<style>
|
||||
html {
|
||||
background-color: #353535;
|
||||
color: white;
|
||||
}
|
||||
|
||||
a {
|
||||
color: lightblue;
|
||||
}
|
||||
|
||||
html,
|
||||
body,
|
||||
.outer {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.outer {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="outer">
|
||||
<div class="inner">
|
||||
redirecting to
|
||||
<a href="/x86_64-unknown-linux-gnu/std">/x86_64-unknown-linux-gnu</a>...
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -6,4 +6,9 @@
|
|||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
gap: 5px;
|
||||
|
||||
text-align: center;
|
||||
|
||||
padding: 5px;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue