28 lines
No EOL
567 B
HTML
28 lines
No EOL
567 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>bin.</title>
|
|
|
|
<style>
|
|
* { box-sizing: border-box; }
|
|
|
|
html, body { margin: 0; }
|
|
|
|
body {
|
|
height: 100vh;
|
|
padding: 2rem;
|
|
background: #263238;
|
|
color: #B0BEC5;
|
|
font-family: 'Courier New', Courier, monospace;
|
|
line-height: 1.1;
|
|
|
|
display: flex;
|
|
}
|
|
|
|
{% block styles %}
|
|
{% endblock styles %}
|
|
</style>
|
|
</head>
|
|
<body>{% block content %}{% endblock content %}</body>
|
|
</html> |