2022-12-18 16:40:39 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<title>{% block title %}{% endblock %}</title>
|
2022-12-18 17:19:30 +00:00
|
|
|
<meta name="viewport" content="width=300rem" />
|
|
|
|
<link rel="stylesheet" href="/res/pico.min.css">
|
2022-12-18 16:40:39 +00:00
|
|
|
<style>
|
2022-12-19 21:08:33 +00:00
|
|
|
.propic {border-radius:0.7em;}
|
|
|
|
.people img {max-width:6em;}
|
2022-12-18 16:40:39 +00:00
|
|
|
.people div {text-align:center;}
|
|
|
|
.people h3, .people p {margin:0;}
|
2022-12-19 21:08:33 +00:00
|
|
|
.people {grid-auto-flow:row;}
|
2022-12-18 16:40:39 +00:00
|
|
|
mark {background:#0f0;}
|
|
|
|
h1 img {max-height:1.4em;}
|
|
|
|
.notice {padding:0.8em;border-radius:3px;background:#e53935;color:#eee;}
|
2022-12-21 19:58:54 +00:00
|
|
|
.notice a {color:#eee;text-decoration:underline;}
|
2022-12-19 21:08:33 +00:00
|
|
|
.container {max-width:40em;padding:1em;box-sizing:border-box;}
|
|
|
|
td > a[role=button] {padding: 0.3em 0.7em;}
|
|
|
|
td {padding-left: 0.2em;padding-right: 0.2em;}
|
|
|
|
a[role=button] {margin: 0.25em 0;}
|
|
|
|
td > input[type=file] {margin:0;padding:0;}
|
|
|
|
section {margin-bottom:3em;}
|
|
|
|
@media (min-width: 500px) {body .grid {grid-template-columns: repeat(auto-fit, minmax(0%, 1fr));}}
|
2022-12-18 16:40:39 +00:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% block main %}{% endblock %}
|
|
|
|
</body>
|
|
|
|
</html>
|