4
0
mirror of https://git.coop/cotech/website.git synced 2025-06-26 08:30:47 +00:00

Style footer

This commit is contained in:
Chris Lowis
2025-06-20 16:07:07 +01:00
parent 8514b203d1
commit b3371aa8c9
2 changed files with 40 additions and 8 deletions

View File

@ -1,16 +1,18 @@
<footer> <footer>
<ul> <section class="slice slice--dark">
<li><a href="/about">About <span>&#xbb;</span></a></li> <ul class="footer-links">
<li><a href="/join">Join <span>&#xbb;</span></a></li> <li><a href="/about">About <span>&#xbb;</span></a></li>
<li><a href="/about#manifesto">Manifesto <span>&#xbb;</span></a></li> <li><a href="/join">Join <span>&#xbb;</span></a></li>
</ul> <li><a href="/about#manifesto">Manifesto <span>&#xbb;</span></a></li>
</ul>
</section>
<div> <section class="slice slice--darker">
<img src="/assets/img/coop-logo.png" class="float-center" /> <img src="/assets/img/coop-logo.png" />
<p>Site developed by <a href="https://glowboxdesign.co.uk/" target="_blank">Glowbox Design</a>, <a href="https://gofreerange.com/" target="_blank">Go Free Range</a> &amp; <a href="https://outlandish.com" target="_blank">Outlandish</a>.</p> <p>Site developed by <a href="https://glowboxdesign.co.uk/" target="_blank">Glowbox Design</a>, <a href="https://gofreerange.com/" target="_blank">Go Free Range</a> &amp; <a href="https://outlandish.com" target="_blank">Outlandish</a>.</p>
<p>Source code available on <a href="https://git.coop/cotech/website" target="_blank">git.coop</a>.</p> <p>Source code available on <a href="https://git.coop/cotech/website" target="_blank">git.coop</a>.</p>
<p>Hosted by <a href="https://www.webarchitects.coop/" target="_blank">Webarchitects</a> for CoTech &#xa9; {{ 'now' | date: '%Y' }}</p> <p>Hosted by <a href="https://www.webarchitects.coop/" target="_blank">Webarchitects</a> for CoTech &#xa9; {{ 'now' | date: '%Y' }}</p>
</div> </section>
<!-- Matomo --> <!-- Matomo -->
<script type="text/javascript"> <script type="text/javascript">

View File

@ -120,6 +120,14 @@ h1, h2, h3, h4, h5, h6 {
background-color: var(--cotech-light-grey); background-color: var(--cotech-light-grey);
} }
.slice--dark {
background-color: #212a3d;
}
.slice--darker {
background-color: #1e2637;
}
.slice--blue { .slice--blue {
background-color: var(--cotech-blue); background-color: var(--cotech-blue);
} }
@ -140,6 +148,22 @@ h1, h2, h3, h4, h5, h6 {
color: var(--cotech-white); color: var(--cotech-white);
} }
.slice--dark p {
color: var(--cotech-white);
}
.slice--dark a {
color: var(--cotech-white);
}
.slice--darker p {
color: #7b8290;
}
.slice--darker a {
color: #7b8290;
}
.metadata { .metadata {
display: flex; display: flex;
gap: var(--space-xl); gap: var(--space-xl);
@ -208,3 +232,9 @@ h1, h2, h3, h4, h5, h6 {
.logo-grid_img:hover { .logo-grid_img:hover {
transform: scale(1.1); transform: scale(1.1);
} }
.footer-links {
list-style-type: none;
display: flex;
gap: var(--space-lg);
}