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");
|
const info = document.createElement("div");
|
||||||
info.classList.add("_internal-info");
|
info.classList.add("_internal-info");
|
||||||
info.innerHTML = `
|
info.innerHTML = `
|
||||||
<p>⚠ Internal Docs ⚠</p>
|
<div>⚠ Internal Docs ⚠</div>
|
||||||
<p>This website was built by <a href="https://github.com/Noratrieb/std-internal-docs">Noratrieb</a>
|
<div>This website was built by <a href="https://github.com/Noratrieb/std-internal-docs">Noratrieb</a></div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<div>
|
<div>
|
||||||
|
|
@ -13,9 +13,9 @@
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<select id="target-select">
|
<select id="target-select">
|
||||||
<option>x86_64-unknown-linux-gnu</option>
|
<option value="x86_64-unknown-linux-gnu">x86-64 GNU/Linux</option>
|
||||||
<option>x86_64-pc-windows-msvc</option>
|
<option value="x86_64-pc-windows-msvc">x86-64 Windows MSVC</option>
|
||||||
<option>aarch64-apple-darwin</option>
|
<option value="aarch64-apple-darwin">ARM64 MacOS</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
46
index.html
46
index.html
|
|
@ -1,12 +1,40 @@
|
||||||
<!DOCTYPE html>
|
<!doctype html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<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>
|
<title>std internal docs</title>
|
||||||
<meta http-equiv="refresh" content="0; url=/x86_64-unknown-linux-gnu/std" >
|
<style>
|
||||||
</head>
|
html {
|
||||||
<body>
|
background-color: #353535;
|
||||||
<div>redirecting to <a href="/x86_64-unknown-linux-gnu/std">/x86_64-unknown-linux-gnu</a></div>
|
color: white;
|
||||||
</body>
|
}
|
||||||
|
|
||||||
|
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>
|
</html>
|
||||||
|
|
|
||||||
|
|
@ -6,4 +6,9 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
gap: 5px;
|
||||||
|
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
padding: 5px;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue