furizon_webint/tpl/base.html

24 lines
670 B
HTML
Raw Normal View History

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>
.propic {border-radius:100%;}
.people img {border-radius:100%;max-width:6em;}
.people div {text-align:center;}
.people h3, .people p {margin:0;}
mark {background:#0f0;}
h1 img {max-height:1.4em;}
.notice {padding:0.8em;border-radius:3px;background:#e53935;color:#eee;}
.notice a {color:#eee;font-decoration:underline;}
2022-12-18 16:50:03 +00:00
.container {max-width:40em}
2022-12-18 16:40:39 +00:00
</style>
</head>
<body>
{% block main %}{% endblock %}
</body>
</html>