diff options
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/download.html | 8 | ||||
| -rw-r--r-- | templates/index.html | 8 | ||||
| -rw-r--r-- | templates/info.html | 2 |
3 files changed, 9 insertions, 9 deletions
diff --git a/templates/download.html b/templates/download.html index 2808a57..5fb245a 100644 --- a/templates/download.html +++ b/templates/download.html | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | {% extends "base.html" %} | 1 | {% extends "base.html" %} |
| 2 | 2 | ||
| 3 | {% block content %} | 3 | {% block content %} |
| 4 | <div class="grid grid-rows-1 w-50"> | 4 | <div class="grid grid-rows-1"> |
| 5 | <div class="grid grid-rows-1"> | 5 | <div class="grid grid-rows-1"> |
| 6 | {% if not meta_after %} | 6 | {% if not meta_after %} |
| 7 | <div class="px-6 py-4 grid grid-rows-1"> | 7 | <div class="px-6 py-4 grid grid-rows-1"> |
| @@ -22,7 +22,7 @@ | |||
| 22 | </div> | 22 | </div> |
| 23 | 23 | ||
| 24 | <div class="flex justify-center mt-8"> | 24 | <div class="flex justify-center mt-8"> |
| 25 | <div class="rounded w-50 overflow-hidden shadow-lg p-4"> | 25 | <div class="rounded-sm overflow-hidden shadow-lg p-4"> |
| 26 | {% if not meta_after %} | 26 | {% if not meta_after %} |
| 27 | <p class="text-gray-700 text-base text-center"> | 27 | <p class="text-gray-700 text-base text-center"> |
| 28 | <svg class="max-h-40 w-full fill-current text-green-600" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" | 28 | <svg class="max-h-40 w-full fill-current text-green-600" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" |
| @@ -48,7 +48,7 @@ | |||
| 48 | 48 | ||
| 49 | <a class="uk-flex-1" href='{{ download_uri }}'> | 49 | <a class="uk-flex-1" href='{{ download_uri }}'> |
| 50 | <button | 50 | <button |
| 51 | class="w-full bg-blue-dark hover:bg-blue-700 text-white py-2 px-4 rounded flex justify-center" | 51 | class="w-full bg-blue-dark hover:bg-blue-700 text-white py-2 px-4 rounded-sm flex justify-center" |
| 52 | > | 52 | > |
| 53 | <svg class="w-4 h-4 mr-2 text-white self-center" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"> | 53 | <svg class="w-4 h-4 mr-2 text-white self-center" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"> |
| 54 | <path style="fill: white" d="M13 8V2H7v6H2l8 8 8-8h-5zM0 18h20v2H0v-2z" /> | 54 | <path style="fill: white" d="M13 8V2H7v6H2l8 8 8-8h-5zM0 18h20v2H0v-2z" /> |
| @@ -60,7 +60,7 @@ | |||
| 60 | </div> | 60 | </div> |
| 61 | {% if meta_after %} | 61 | {% if meta_after %} |
| 62 | <div class="mx-auto w-full"> | 62 | <div class="mx-auto w-full"> |
| 63 | <div class="bg-white shadow-md rounded my-6"> | 63 | <div class="bg-white shadow-md rounded-sm my-6"> |
| 64 | <table class="text-left w-full border-collapse"> | 64 | <table class="text-left w-full border-collapse"> |
| 65 | <div class="px-6 py-4 grid grid-rows-1"> | 65 | <div class="px-6 py-4 grid grid-rows-1"> |
| 66 | <h1 class="font-light text-center text-4xl">Remaining Metadata</h1> | 66 | <h1 class="font-light text-center text-4xl">Remaining Metadata</h1> |
diff --git a/templates/index.html b/templates/index.html index 70aa259..bed0008 100644 --- a/templates/index.html +++ b/templates/index.html | |||
| @@ -9,13 +9,13 @@ | |||
| 9 | </div> | 9 | </div> |
| 10 | 10 | ||
| 11 | <div class="flex justify-center mt-8"> | 11 | <div class="flex justify-center mt-8"> |
| 12 | <div class="w-50 rounded overflow-hidden shadow-lg pb-4"> | 12 | <div class="rounded-sm overflow-hidden shadow-lg pb-4"> |
| 13 | <div class="px-6 pt-4 pb-2 grid grid-rows-1"> | 13 | <div class="px-6 pt-4 pb-2 grid grid-rows-1"> |
| 14 | <form method="post" enctype="multipart/form-data" class="grid grid-rows-1"> | 14 | <form method="post" enctype="multipart/form-data" class="grid grid-rows-1"> |
| 15 | <label class="text-gray-700 text-sm text-opacity-80 mb-2" for="upload_file">Choose your file to clean</label> | 15 | <label class="text-gray-700 text-sm text-opacity-80 mb-2" for="upload_file">Choose your file to clean</label> |
| 16 | <input class="border rounded" aria-label="" type="file" name="file" id="upload_file" accept="{{ mimetypes | join(', ') }}"> | 16 | <input class="border rounded-sm" aria-label="" type="file" name="file" id="upload_file" accept="{{ mimetypes | join(', ') }}"> |
| 17 | <button | 17 | <button |
| 18 | class="w-full mt-4 bg-blue-dark hover:bg-blue-700 text-white py-2 px-4 rounded flex justify-center" | 18 | class="w-full mt-4 bg-blue-dark hover:bg-blue-700 text-white py-2 px-4 rounded-sm flex justify-center" |
| 19 | type="submit" | 19 | type="submit" |
| 20 | value="Upload" | 20 | value="Upload" |
| 21 | > | 21 | > |
| @@ -31,7 +31,7 @@ | |||
| 31 | </div> | 31 | </div> |
| 32 | </div> | 32 | </div> |
| 33 | <button | 33 | <button |
| 34 | class="p-0 w-10 h-10 absolute bottom-8 md:bottom-16 lg:bottom-24 right-8 md:right-16 lg:right-24 bg-blue-300 hover:bg-blue-400 rounded-full active:shadow-lg mouse shadow transition ease-in duration-200 focus:outline-none"> | 34 | class="p-0 w-10 h-10 absolute bottom-8 md:bottom-16 lg:bottom-24 right-8 md:right-16 lg:right-24 bg-blue-300 hover:bg-blue-400 rounded-full active:shadow-lg mouse shadow-sm transition ease-in duration-200 focus:outline-hidden"> |
| 35 | <a href="/info" role="link" class="w-6 h-6 text-white inline-block font-bold"> | 35 | <a href="/info" role="link" class="w-6 h-6 text-white inline-block font-bold"> |
| 36 | ? | 36 | ? |
| 37 | </a> | 37 | </a> |
diff --git a/templates/info.html b/templates/info.html index a2d9c92..7e6155d 100644 --- a/templates/info.html +++ b/templates/info.html | |||
| @@ -64,7 +64,7 @@ | |||
| 64 | </h1> | 64 | </h1> |
| 65 | <div> | 65 | <div> |
| 66 | {% for extension in extensions %} | 66 | {% for extension in extensions %} |
| 67 | <span class="rounded-full bg-blue text-white p-2 mb-2 mr-2 rounded float-left"> | 67 | <span class="rounded-full bg-blue text-white p-2 mb-2 mr-2 rounded-sm float-left"> |
| 68 | {{ extension }} | 68 | {{ extension }} |
| 69 | </span> | 69 | </span> |
| 70 | {% endfor %} | 70 | {% endfor %} |
