71v2/project/templates/airtable/airtable_base.html
Florian du Garage Num 07ccbd3db1 initial commit
2023-04-13 15:34:46 +02:00

59 lines
1.2 KiB
HTML

{% extends 'base.html' %}
{%- block head_scripts %}
{{ super() }}
<link rel="stylesheet" href="{{ url_for('static', filename='css/thumbnail.css') }}"/>
{%- endblock head_scripts %}
{% block styles %}
{{ super() }}
<style>
.loader-container {
display: none;
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.8);
z-index: 9999;
}
.loader {
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #3498db;
width: 120px;
height: 120px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
-webkit-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
{% endblock styles %}
{% block content %}
{% endblock %}
{% block footer -%}
{% include "airtable/partials/footer.html" %}
{%- endblock footer %}
{% block scripts %}
{{ super() }}
<script src="{{ url_for('static', filename='js/attachment.js') }}"></script>
{% endblock scripts %}