Made the home page more responsive

This commit is contained in:
xemeds
2020-07-19 16:51:54 +00:00
parent 16f562441d
commit 0cddb3e4a6
3 changed files with 48 additions and 40 deletions
+9 -5
View File
@@ -1,9 +1,13 @@
{% extends "layout.html" %}
{% block body %}
<form method="POST" action="" class="form">
{{ form.hidden_tag() }}
{{ form.url(placeholder="Enter the URL here", class="url") }}
{{ form.submit(class="submit") }}
</form>
<div class="container">
<form method="POST" action="">
{{ form.hidden_tag() }}
<div class="inputs">
{{ form.url(placeholder="Enter the URL here", class="url") }}
{{ form.submit(class="submit") }}
</div>
</form>
</div>
{% endblock %}
+1
View File
@@ -2,6 +2,7 @@
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="/static/style.css" rel="stylesheet" type="text/css"/>