furizon_webint/tpl/base.html

22 lines
627 B
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>{% block title %}{% endblock %}</title>
<link rel="stylesheet" href="https://unpkg.com/@picocss/pico@latest/css/pico.min.css">
<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;}
</style>
</head>
<body>
{% block main %}{% endblock %}
</body>
</html>