This commit is contained in:
brooke 2025-03-15 16:23:39 -04:00
parent 473da468fa
commit 9fe78b96a6
3 changed files with 254 additions and 231 deletions

View file

@ -1,4 +1,5 @@
<html lang="en" data-theme="toggle">
<head>
<link rel="stylesheet" href="/styles.css" />
</head>
@ -18,12 +19,12 @@
</header>
<main>
<section class="console">
<p> <a href="/console">../</a> A2D1-KB21</p>
<div class="console-left">
Bronze Discipline<br /><small>A2D1-KB21</small>
</div>
<div class="console-right">
<button>Restart</button><button>Power Off</button
><button class="alert">Reinstall</button>
<button>Restart</button><button>Power Off</button><button class="alert">Reinstall</button>
</div>
<div class="console-uname">
Debian GNU/Linux 12 (bookworm)<br />
@ -55,6 +56,16 @@
<small>10% Utilization</small>
</div>
</div>
<div class="console-resources">
<label for="disk">Disk Usage</label>
<div id="disk" class="progress">
<div class="bar" style="width: 38%"></div>
</div>
<div>
<small>12.2 GB of 32 GB Used</small>
<small>19.8 GB Free</small>
</div>
</div>
<div class="console-log">
<details>
<summary>Instance Event Log</summary>
@ -96,4 +107,5 @@
<a href="https://myco.systems/">MycoSystems LLC</a>
</footer>
</body>
</html>

View file

@ -1,4 +1,5 @@
<html lang="en" data-theme="toggle">
<head>
<link rel="stylesheet" href="/styles.css" />
</head>
@ -73,6 +74,11 @@
</table>
</div>
<i>
<br>
compute instances are QEMU virtual machines with shared CPU on an AMD EPYC 3rd gen system with ECC memory.
<br>
compute instances get given x86-64-v2-AES cores instead of the host's instruction set.
<br>
<br />Available operating systems:<br />
- FreeBSD 14.2<br />- NetBSD 10.1<br />- Arch Linux<br />- Ubuntu
22.04<br />- Rocky Linux 9<br />- Alpine Linux 3.21<br />- Debian 12
@ -139,4 +145,5 @@
<a href="https://myco.systems/">MycoSystems LLC</a>
</footer>
</body>
</html>

View file

@ -224,10 +224,18 @@ section {
display: grid;
font-weight: 600;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(3, 1fr);
grid-template-rows: 2rem repeat(3, 1fr);
gap: 0;
}
.console i {
font-size: 0.9rem;
}
.console p {
grid-column: span 2;
}
.console-left,
.console-right {
color: #f1c9c0;
@ -238,6 +246,7 @@ section {
border-bottom: 2px solid #f1c9c0;
height: 100%;
max-height: 3.5rem;
margin-bottom: 1rem;
}
.console-right button,
@ -292,10 +301,6 @@ section {
height: 100%;
}
.console i {
font-size: 0.9rem;
}
.console-log {
grid-column: span 2;
}
@ -326,7 +331,7 @@ details div {
}
.console-uname {
grid-row: span 2;
grid-row: span 3;
}
.console-uname li:before {
@ -356,8 +361,7 @@ tr a::after {
display: inline-block;
width: 12px;
height: 12px;
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23f3bbae" d="M352 0c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9L370.7 96 201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L416 141.3l41.4 41.4c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6l0-128c0-17.7-14.3-32-32-32L352 0zM80 32C35.8 32 0 67.8 0 112L0 432c0 44.2 35.8 80 80 80l320 0c44.2 0 80-35.8 80-80l0-112c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 112c0 8.8-7.2 16-16 16L80 448c-8.8 0-16-7.2-16-16l0-320c0-8.8 7.2-16 16-16l112 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L80 32z"/></svg>')
no-repeat center center;
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23f3bbae" d="M352 0c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9L370.7 96 201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L416 141.3l41.4 41.4c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6l0-128c0-17.7-14.3-32-32-32L352 0zM80 32C35.8 32 0 67.8 0 112L0 432c0 44.2 35.8 80 80 80l320 0c44.2 0 80-35.8 80-80l0-112c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 112c0 8.8-7.2 16-16 16L80 448c-8.8 0-16-7.2-16-16l0-320c0-8.8 7.2-16 16-16l112 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L80 32z"/></svg>') no-repeat center center;
background-size: contain;
margin-left: 0.5rem;
vertical-align: middle;