67 lines
974 B
HTML
67 lines
974 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>{% block title %}{% endblock %}</title>
|
|
<style>
|
|
body {
|
|
background-color: #333;
|
|
color: #fff;
|
|
}
|
|
|
|
footer {
|
|
text-align: center;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
border-collapse: collapse;
|
|
margin-top: 10px;
|
|
|
|
thead th {
|
|
background-color: #252525;
|
|
}
|
|
|
|
tbody tr:hover {
|
|
background-color: #4f4f4f;
|
|
}
|
|
|
|
& tr,
|
|
th,
|
|
td {
|
|
border: 1px solid #fff;
|
|
padding: 7px;
|
|
}
|
|
|
|
.charlist {
|
|
display: inline-grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 15px;
|
|
|
|
.aqua {
|
|
color: #97c8ff;
|
|
}
|
|
|
|
.ventus {
|
|
color: #26ff62;
|
|
}
|
|
|
|
.terra {
|
|
color: #ff7400;
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
|
|
{% block head %}{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
<div id="content">{% block content %}{% endblock %}</div>
|
|
<footer>
|
|
<p>v{{ crate::VERSION }}</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|