mirror of
https://github.com/CommonLoon102/NBloodServerSupervisor.git
synced 2024-12-24 19:52:56 +01:00
59 lines
1.5 KiB
Plaintext
59 lines
1.5 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>@ViewData["Title"]</title>
|
|
<style>
|
|
.code {
|
|
font-family: Consolas;
|
|
background-color: black;
|
|
color: whitesmoke;
|
|
}
|
|
|
|
.warning {
|
|
border: dashed 4px red;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.bolder {
|
|
font-weight: bolder;
|
|
}
|
|
|
|
.main {
|
|
margin: auto;
|
|
max-width: 900px;
|
|
padding: 10px;
|
|
}
|
|
|
|
.bordered {
|
|
border: 2px solid cornflowerblue;
|
|
padding-left: 1em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body style="background-color: cornsilk">
|
|
<div class="main">
|
|
<header>
|
|
<form method="get">
|
|
<button asp-route="Home">Home</button>
|
|
</form>
|
|
<hr />
|
|
<p>I live... Again!</p>
|
|
</header>
|
|
|
|
<div>
|
|
<main role="main">
|
|
@RenderBody()
|
|
</main>
|
|
</div>
|
|
|
|
<footer class="border-top footer text-muted">
|
|
<div>
|
|
<hr />
|
|
<p>Do you think this page is ugly? You are right! If you want to make it look better, PRs are welcomed (but please, don't use any JavaScript, thanks): <a href="https://github.com/CommonLoon102/NBloodServerSupervisor">https://github.com/CommonLoon102/NBloodServerSupervisor</a></p>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html> |