{% extends "base" %} {% block styles %} html, body { overflow-y:hidden; } body { height: 100vh; font-family: monospace; display: flex; } form { flex: 1; } textarea { height: 100%; width: 100%; background: none; border: none; resize: none; overflow: auto; color: inherit; font-family: monospace; line-height: inherit; } button[type="submit"] { position: absolute; bottom: 1rem; right: 1rem; height: 4rem; width: 4rem; border: none; border-radius: 50%; background: #F29718; font-size: 0rem; cursor: pointer; } *:focus { outline: none; } button[type="submit"].hidden { display: none; } {% endblock styles %} {% block body %}
{% endblock body %}