2023-11-18 13:29:19 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2023-11-18 22:17:05 +00:00
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<title>{% block title %}{{ title }} - staxman{% endblock %}</title>
|
|
|
|
<link rel="preconnect" href="https://rsms.me/">
|
|
|
|
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
|
2023-11-19 14:33:09 +00:00
|
|
|
<link rel="stylesheet" href="https://iosevka-webfonts.github.io/iosevka/iosevka.css">
|
2023-11-18 22:17:05 +00:00
|
|
|
<style>
|
|
|
|
:root {
|
2023-11-21 00:36:42 +00:00
|
|
|
--background: #13131E;
|
|
|
|
--bg-raised: #171625;
|
|
|
|
--text: #E0DFFE;
|
|
|
|
|
|
|
|
--link: #FFC53D;
|
|
|
|
--link-hover: #e28d0e;
|
|
|
|
|
|
|
|
--button-color: #B1A9FF;
|
|
|
|
--button-bg: #202248;
|
|
|
|
--button-border: #5B5BD6;
|
|
|
|
--button-bg-hover: #7E451D;
|
|
|
|
|
|
|
|
background-color: var(--background);
|
|
|
|
color: var(--text);
|
2023-11-18 22:17:05 +00:00
|
|
|
font-family: Inter, sans-serif;
|
2023-11-22 09:59:51 +00:00
|
|
|
scrollbar-width: thin;
|
2023-11-18 22:17:05 +00:00
|
|
|
}
|
|
|
|
|
2023-11-19 14:33:09 +00:00
|
|
|
code {
|
|
|
|
font-family: "Iosevka Web", monospace;
|
|
|
|
font-size: 11pt;
|
|
|
|
}
|
|
|
|
|
2023-11-18 22:17:05 +00:00
|
|
|
a[href],
|
|
|
|
a[href]:visited {
|
2023-11-21 00:36:42 +00:00
|
|
|
color: var(--link);
|
2023-11-18 22:17:05 +00:00
|
|
|
|
|
|
|
&:hover {
|
2023-11-21 00:36:42 +00:00
|
|
|
color: var(--link-hover);
|
2023-11-18 22:17:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
2023-11-21 00:36:42 +00:00
|
|
|
background-color: var(--bg-raised);
|
2023-11-18 22:17:05 +00:00
|
|
|
|
|
|
|
& a {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
text-decoration: none;
|
|
|
|
padding: 5px 8px;
|
|
|
|
justify-content: center;
|
|
|
|
max-width: 100px;
|
2023-11-21 00:36:42 +00:00
|
|
|
box-shadow: inset 0 -2px var(--button-bg);
|
2023-11-18 22:17:05 +00:00
|
|
|
font-size: 11pt;
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
|
|
|
&[href],
|
|
|
|
&[href]:visited {
|
2023-11-21 00:36:42 +00:00
|
|
|
color: var(--button-color);
|
2023-11-18 22:17:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: #1E160F;
|
2023-11-21 00:36:42 +00:00
|
|
|
box-shadow: inset 0 -2px var(--button-bg-hover);
|
2023-11-18 22:17:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-19 14:33:09 +00:00
|
|
|
|
|
|
|
main {
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
body,
|
|
|
|
html {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2023-11-18 22:17:05 +00:00
|
|
|
}
|
2023-11-21 00:36:42 +00:00
|
|
|
|
|
|
|
button {
|
|
|
|
background-color: var(--button-bg);
|
|
|
|
color: var(--button-color);
|
|
|
|
border: 1px solid var(--button-border);
|
|
|
|
padding: 4px 8px;
|
|
|
|
border-radius: 3px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
background-color: var(--button-bg-hover);
|
|
|
|
color: var(--link-hover);
|
|
|
|
border-color: var(--link-hover);
|
|
|
|
}
|
|
|
|
}
|
2023-11-22 09:59:51 +00:00
|
|
|
|
|
|
|
table.table {
|
|
|
|
background-color: var(--bg-raised);
|
|
|
|
border: 3px solid #5958B1;
|
|
|
|
border-radius: 3px;
|
|
|
|
|
|
|
|
& th,
|
|
|
|
& td {
|
|
|
|
padding: 3px 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
& th {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
& thead {
|
|
|
|
background-color: #202248;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.full-width {
|
|
|
|
width: 100%;
|
|
|
|
flex: 1;
|
|
|
|
}
|
2023-11-18 22:17:05 +00:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<nav>
|
|
|
|
<a href="/">Overview</a>
|
|
|
|
</nav>
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|