{% extends "base" %} {% block styles %} html, body { overflow-y:hidden; } body { height: 100vh; font-family: monospace; padding: 3rem; display: flex; } form { flex: 1; } textarea { height: 90%; width: 100%; background: none; border: none; padding-left: 10px resize: none; overflow: auto; color: inherit; font-family: 'Fira Code', 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; } textarea:focus, input:focus { outline: none; } *:focus { outline: none; } button[type="submit"].hidden { display: none; } #drop_zone { border: 1px dashed grey; width: 100%; height: 100%; } {% endblock styles %} {% block body %}
{% endblock body %}