mirror of
https://git.coop/cotech/website.git
synced 2025-12-23 08:57:33 +00:00
Display co-op logos and services in a grid
This commit is contained in:
@ -177,7 +177,6 @@ section {
|
|||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.stack {
|
.stack {
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -215,6 +214,32 @@ section {
|
|||||||
color: var(--cotech-white);
|
color: var(--cotech-white);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.grid {
|
||||||
|
display: grid;
|
||||||
|
grid-gap: var(--space-sm);
|
||||||
|
grid-template-columns: 1fr;
|
||||||
|
align-items: stretch;
|
||||||
|
}
|
||||||
|
|
||||||
|
.grid a {
|
||||||
|
display: flex;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.grid-dense {
|
||||||
|
grid-template-columns: 1fr 1fr;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 420px) {
|
||||||
|
.grid {
|
||||||
|
grid-template-columns: 1fr 1fr;
|
||||||
|
}
|
||||||
|
|
||||||
|
.grid-dense {
|
||||||
|
grid-template-columns: 1fr 1fr 1fr 1fr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.header {
|
.header {
|
||||||
display: flex;
|
display: flex;
|
||||||
padding: var(--space-lg) var(--space-md);
|
padding: var(--space-lg) var(--space-md);
|
||||||
|
|||||||
@ -22,6 +22,7 @@ layout: default
|
|||||||
particularly when it comes to democratic ownership and
|
particularly when it comes to democratic ownership and
|
||||||
decision-making.</p>
|
decision-making.</p>
|
||||||
|
|
||||||
|
<div class="grid">
|
||||||
<div class="box stack">
|
<div class="box stack">
|
||||||
<h3 class="title">Digital products & platforms</h3>
|
<h3 class="title">Digital products & platforms</h3>
|
||||||
<ul>
|
<ul>
|
||||||
@ -70,13 +71,14 @@ layout: default
|
|||||||
<li>Service Design</li>
|
<li>Service Design</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="members" class="stack">
|
<section id="members" class="stack">
|
||||||
<h2>Our members</h2>
|
<h2>Our members</h2>
|
||||||
<p class="intro">Meet the coops behind CoTech</p>
|
<p class="intro">Meet the coops behind CoTech</p>
|
||||||
|
|
||||||
<div>
|
<div class="grid grid-dense">
|
||||||
{% for coop in site.coops %}
|
{% for coop in site.coops %}
|
||||||
<a href="{{ coop.url | relative_url }}">
|
<a href="{{ coop.url | relative_url }}">
|
||||||
<div class="box">
|
<div class="box">
|
||||||
|
|||||||
Reference in New Issue
Block a user