Improved the overall responsiveness and the styling of the pages

This commit is contained in:
xemeds
2020-08-20 09:43:52 +03:00
parent 59cbba9d03
commit 3613fe57ec
6 changed files with 50 additions and 51 deletions
+5 -5
View File
@@ -1,10 +1,10 @@
{% extends "layout.html" %}
{% block body %}
<div class="container">
<div class="inputs">
<input type="text" value="{{ url }}" id="url" class="url" readonly>
<button onclick="copyURL()" class="button">Copy</button>
</div>
<div class="url-form">
<ul class='input-list'>
<li><input type="text" value="{{ url }}" id="url" class="url" readonly></li>
<li><button onclick="copyURL()" class="button">Copy</button></li>
</ul>
</div>
{% endblock %}