diff --git a/patches/frontend/src/custom/footer/footer.css b/patches/frontend/src/custom/footer/footer.css index 11b7b0e..e5673dc 100644 --- a/patches/frontend/src/custom/footer/footer.css +++ b/patches/frontend/src/custom/footer/footer.css @@ -26,16 +26,18 @@ footer div a:hover { footer div.logo { display: flex; justify-content: space-evenly; - @media screen and (max-width: 900px) { - flex-direction: column; - } - } footer div.logo img { height: 90px; margin: 3px; - @media screen and (max-width: 900px) { - height: 60px; - } +} + +@media screen and (max-width: 900px) { + footer div.logo { + flex-direction: column; + } + footer div.logo img { + height: 60px; + } } \ No newline at end of file diff --git a/sandbox/wmts/index.html b/sandbox/wmts/index.html index 637354b..3fd887e 100644 --- a/sandbox/wmts/index.html +++ b/sandbox/wmts/index.html @@ -3,7 +3,9 @@ Tests WMTS + + @@ -236,5 +238,19 @@ var hash = L.hash(map); + diff --git a/sandbox/wmts/leaflet/footer.css b/sandbox/wmts/leaflet/footer.css new file mode 100644 index 0000000..d34399f --- /dev/null +++ b/sandbox/wmts/leaflet/footer.css @@ -0,0 +1,43 @@ +footer { + margin-top: 20px; + padding: 20px 0px; + text-align: center; + background: rgb(226, 226, 226); +} + +footer p, footer div{ + margin: 0 auto; + max-width: 80%; +} + +footer div { + margin-bottom: 20px; +} + +footer div a { + text-decoration: none; + color: var(--secondary) !important; +} + +footer div a:hover { + border-bottom: solid 1px black; +} + +footer div.logo { + display: flex; + justify-content: space-evenly; +} + +footer div.logo img { + height: 90px; + margin: 3px; +} + +@media screen and (max-width: 900px) { + footer div.logo { + flex-direction: column; + } + footer div.logo img { + height: 60px; + } +}