Add footer, FAQ and privacy info #31

This commit is contained in:
Ian Renton
2025-10-07 17:12:54 +01:00
parent abff65f78d
commit a83c787ffe
4 changed files with 78 additions and 14 deletions

View File

@@ -1,7 +1,27 @@
/* NAVIGATION */
.navbar-nav .nav-link.active {
font-weight: bold;
}
/* GENERAL PAGE LAYOUT */
div.container {
display:grid;
grid-template-rows:auto 1fr auto;
grid-template-columns:100%;
/* fallback height */
min-height:100vh;
/* new small viewport height for modern browsers */
min-height:100svh;
}
/* ABOUT PAGE*/
#info-container{
width: 100%;
}
@@ -13,6 +33,21 @@
}
}
/* SPOTS/ALERTS PAGES, SETTINGS/STATUS AREAS */
div.appearing-panel {
display: none;
}
p.filter-card-text {
line-height: 2.5em !important;
}
/* SPOTS/ALERTS PAGES, MAIN TABLE */
/* Custom version of Bootstrap table colouring to colour 2 in every 4 rows, because of our second row per spot that
appears on mobile */
.table-striped-custom > tbody > tr:nth-of-type(4n+3) > *,
@@ -66,14 +101,6 @@ span.mode-q {
color: lightgray;
}
div.appearing-panel {
display: none;
}
p.filter-card-text {
line-height: 2.5em !important;
}
a.dx-link {
color: var(--bs-emphasis-color);
text-decoration: none;
@@ -89,6 +116,9 @@ tr.table-faded td span {
text-decoration: line-through !important;
}
/* GENERAL MOBILE SUPPORT */
@media (max-width: 991.99px) {
.hideonmobile {
display: none !important;