Remove unused code from trip list HTML
This commit is contained in:
parent
a96aefe22b
commit
8181dfbe3b
|
@ -8,35 +8,7 @@
|
||||||
|
|
||||||
<link rel="stylesheet" href="{{ url_for("static", filename="leaflet/leaflet.css") }}">
|
<link rel="stylesheet" href="{{ url_for("static", filename="leaflet/leaflet.css") }}">
|
||||||
|
|
||||||
{% set conference_column_count = 8 %}
|
|
||||||
{% set accommodation_column_count = 8 %}
|
|
||||||
{% set travel_column_count = 10 %}
|
|
||||||
<style>
|
<style>
|
||||||
.conferences {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat({{ conference_column_count }}, auto); /* 7 columns for each piece of information */
|
|
||||||
gap: 10px;
|
|
||||||
justify-content: start;
|
|
||||||
}
|
|
||||||
|
|
||||||
.accommodation {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat({{ accommodation_column_count }}, auto);
|
|
||||||
gap: 10px;
|
|
||||||
justify-content: start;
|
|
||||||
}
|
|
||||||
|
|
||||||
.travel {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat({{ travel_column_count }}, auto);
|
|
||||||
gap: 10px;
|
|
||||||
justify-content: start;
|
|
||||||
}
|
|
||||||
|
|
||||||
.grid-item {
|
|
||||||
/* Additional styling for grid items can go here */
|
|
||||||
}
|
|
||||||
|
|
||||||
body, html {
|
body, html {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
@ -72,7 +44,6 @@
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue