Add bottom border to heading and add camping association images

This commit is contained in:
oriol carbonell pujolàs 2023-12-22 00:20:53 +01:00
parent b2b0f035b5
commit 8cfa3b1c77
6 changed files with 19 additions and 4 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@ -200,6 +200,7 @@ body > header {
body > header, nav .has-submenu ul { body > header, nav .has-submenu ul {
background-color: rgba(var(--clar-rgb), 0.7); background-color: rgba(var(--clar-rgb), 0.7);
backdrop-filter: blur(10px); backdrop-filter: blur(10px);
border-bottom: 1px solid;
} }
h1 a { h1 a {
@ -1149,7 +1150,7 @@ body > footer {
gap: 1rem; gap: 1rem;
} }
body > footer div, .campsite_type_features, .campsite_type_detail { body > footer > div, .campsite_type_features, .campsite_type_detail {
padding: 5rem 0; padding: 5rem 0;
border-top: 3px solid black; border-top: 3px solid black;
} }
@ -1177,7 +1178,7 @@ body > footer section:nth-child(3) p {
padding-bottom: 2.5rem; padding-bottom: 2.5rem;
} }
body > footer div { body > footer > div {
display: flex; display: flex;
gap: 3rem; gap: 3rem;
justify-content: space-between; justify-content: space-between;
@ -1219,6 +1220,14 @@ body > footer span {
display: block; display: block;
} }
.camping-association {
display: flex;
height: 5rem;
gap: 2rem;
margin: 2rem 0 0;
}
/* contact */ /* contact */
@media (max-width: 64rem) { @media (max-width: 64rem) {
@ -1357,4 +1366,4 @@ dt {
.services_icon a { .services_icon a {
color: var(--accent); color: var(--accent);
text-decoration: var(--accent) wavy underline; text-decoration: var(--accent) wavy underline;
} }

View File

@ -98,7 +98,13 @@
<h2>{{ .CompanyAddress.TradeName }}</h2> <h2>{{ .CompanyAddress.TradeName }}</h2>
{{ template "companyAddress" .CompanyAddress }} {{ template "companyAddress" .CompanyAddress }}
{{ printf ( gettext "<abbr title=\"Catalonia Tourism Registry\">RTC</abbr> <abbr title=\"Number\">#</abbr>%s") .CompanyAddress.RTCNumber | raw }} {{ printf ( gettext "<abbr title=\"Catalonia Tourism Registry\">RTC</abbr> <abbr title=\"Number\">#</abbr>%s") .CompanyAddress.RTCNumber | raw }}
</section> <div class="camping-association">
<img src="/static/camping-association/Reconeixement.gif" alt="Alan Rogers">
<img src="/static/camping-association/acsi.jpg" alt="ACSI">
<img src="/static/camping-association/logofecc4.gif" alt="Federación Española de Clubes Capistas">
<img src="/static/camping-association/anwb.png" alt="anwb">
</div>
</section>
</div> </div>
<span>© {{( gettext "Campsite Montagut" )}} | 19942023</span> <span>© {{( gettext "Campsite Montagut" )}} | 19942023</span>
</footer> </footer>