minor fixes

This commit is contained in:
Nicholas Orlowsky 2024-05-16 19:47:14 +02:00
parent 7eb854592c
commit 24942813b8
Signed by: nickorlow
GPG key ID: 838827D8C4611687
3 changed files with 16 additions and 9 deletions

View file

@ -18,6 +18,7 @@ body {
background-color: #d2e0ec; background-color: #d2e0ec;
margin: 20px auto; margin: 20px auto;
max-width: 750px; max-width: 750px;
width: 80%;
} }
a { a {
@ -38,3 +39,7 @@ p.lineitem::after {
flex: 1; flex: 1;
border-bottom: 1px dotted #000; border-bottom: 1px dotted #000;
} }
.nav-link {
white-space: nowrap;
}

View file

@ -1,10 +1,8 @@
{%- import "uptime_table.html" as scope -%} {%- import "uptime_table.html" as scope -%}
<div> <div>
<div style="display: flex; align-items: baseline;"> <p style="margin-bottom: -9px;"><i>Nick Web Services is now</i></p>
<h1 style="margin-bottom: 0px;">Sharpe Mountain Compute</h1> <h1 style="margin-bottom: 0px;margin-top: 0px;">Sharpe Mountain Compute</h1>
<p style="margin-bottom: 0px; margin-left: 2px;">fka Nick Web Services</p>
</div>
<p style="margin-top: 0px;">Pottsville, PA - Philadelphia, PA - Austin, TX</p> <p style="margin-top: 0px;">Pottsville, PA - Philadelphia, PA - Austin, TX</p>
<a href="https://nws.nickorlow.com">[ Old Website (NWS Branded) ]</a> <a href="https://nws.nickorlow.com">[ Old Website (NWS Branded) ]</a>
@ -25,6 +23,6 @@ We operate four datacenters located across three cities in two states. This infr
all year) for 2023 and 100% uptime for 2024 (YTD). all year) for 2023 and 100% uptime for 2024 (YTD).
</p> </p>
<h3>Compare us to our competitors!</h3> <h2>Compare us to our competitors!</h2>
{% call scope::uptime_table(uptime_infos) %} {% call scope::uptime_table(uptime_infos) %}
</div> </div>

View file

@ -1,18 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head> <head>
<title>Sharpe Mountain Compute</title> <title>Sharpe Mountain Compute</title>
<link rel="stylesheet" href="/assets/style.css"> <link rel="stylesheet" href="/assets/style.css">
<link rel="icon" type="image/x-icon" href="/assets/favicon.ico"> <link rel="icon" type="image/x-icon" href="/assets/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head> </head>
<body> <body>
<nav> <nav>
<div style="display: flex; justify-content: space-between;"> <div style="display: flex; justify-content: space-between;">
<div> <div>
<a href="/">[ Home ]</a> <a class="nav-link" href="/">[ Home ]</a>
<a href="/system_status">[ System Status ]</a> <a class="nav-link" href="/system_status">[ System Status ]</a>
<a href="/blog">[ Blog ]</a> <a class="nav-link" href="/blog">[ Blog ]</a>
</div> </div>
<div> <div>
<a href="/dashboard">[ Dashboard ]</a> <a class="nav-link" href="/dashboard">[ Dashboard ]</a>
</div> </div>
</div> </div>
</nav> </nav>
@ -36,3 +39,4 @@
</div> </div>
</footer> </footer>
</body> </body>
</html>