added edoc, idoc, root links

This commit is contained in:
Arthur Lu 2022-04-05 23:17:30 -07:00
parent a2c584a3cd
commit c685921948

View File

@ -1,43 +1,50 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<title>tronnet homepage</title> <title>tronnet homepage</title>
<style> <style>
.std-text { .std-text {
font-family: monospace; font-family: monospace;
color: white; color: white;
margin: 20px 0px 20px 0px; margin: 20px 0px 20px 0px;
} }
.btn-group button { .btn-group button {
background-color: #00ff00; background-color: #00ff00;
border: 1px solid #00ff00; border: 1px solid #00ff00;
color: black; color: black;
padding: 10px 24px; padding: 10px 24px;
margin: 0px 20px 0px 20px; margin: 0px 20px 0px 20px;
cursor: pointer; cursor: pointer;
float: left; float: left;
} }
.btn-group button:not(:last-child) { .btn-group button:not(:last-child) {
border-right: none; border-right: none;
} }
.btn-group:after { .btn-group:after {
content: ""; content: "";
clear: both; clear: both;
display: table; display: table;
} }
.btn-group button:hover { .btn-group button:hover {
background-color: #00AA00; background-color: #00AA00;
border: #00AA00; border: #00AA00;
} }
</style> </style>
</head> </head>
<body style="background-color:black;"> <body style="background-color:black;">
<h1 class = "std-text" style = "font-size: 72px; text-align: center;">tronnet</h1> <h1 class = "std-text" style = "font-size: 72px; text-align: center;">tronnet</h1>
<h2 class = "std-text" style = "font-size: 32px; text-align: center;">Affordable custom server solutions.</h2> <h2 class = "std-text" style = "font-size: 32px; text-align: center;">Affordable custom server solutions.</h2>
<div class="btn-group" style = "margin: auto; display: flex; flex-direction: row; justify-content: center;"> <h3 class = "std-text" style = "font-size: 24px; text-align: center;">Cluster Directory</h3>
<button onclick="window.location.href='https://directory.tronnet.net';">Directory</button> <div class="btn-group" style = "margin: auto; display: flex; flex-direction: row; justify-content: center;">
<button onclick="window.location.href='https://status.tronnet.net';">Cluster Status</button> <button onclick="window.location.href='https://tronnet.net';">Homepage</button>
</div> <button onclick="window.location.href='https://status.tronnet.net';">Cluster Status</button>
</body> <button onclick="window.location.href='https://edocs.tronnet.net';">External Documentation</button>
<button onclick="window.location.href='https://idocs.tronnet.net';">Internal Documentation</button>
</div>
<h3 class = "std-text" style = "font-size: 24px; text-align: center;">User Directory</h3>
<div class="btn-group" style = "margin: auto; display: flex; flex-direction: row; justify-content: center;">
<button onclick="window.location.href='https://root.tronnet.net';">root</button>
</div>
</body>
</html> </html>