Skip to content

Commit

Permalink
css: anchored support org text consistently
Browse files Browse the repository at this point in the history
  • Loading branch information
AliceOrunitia committed Aug 20, 2024
1 parent 3f4fe4f commit 8a84ef8
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 2 deletions.
33 changes: 31 additions & 2 deletions content/en/contributors.html
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ <h3 id="supportfrom">With support from</h3>
{{< /blocks/lead >}}

{{< blocks/section color="light" >}}
<div class="container">
<div class="container mobile-display">
<div class="text-center row">
<div class="col funding">
<div>
Expand All @@ -170,7 +170,36 @@ <h3 id="supportfrom">With support from</h3>
</div>
</div>
</div>

<div class="container large-display">
<div class="text-center row">
<div class="col funding">
<div>
<a href="https:prototypefund.de" >
<img src="/icons/PrototypeFund_Logo.svg" class="rp-supporter" alt="Logo ProtoType Fund: Large blue P letter">
</a>
</div>
</div>
<div class="col funding">
<div>
<a href="https://NLnet.nl" >
<img src="/icons/nlnet.svg" class="rp-supporter" alt="Logo NLnet: abstract logo of four people seen from above">
</a>

<a href="https://NLnet.nl/assure" >
<img src="/icons/ngiassure.svg" class="rp-supporter" alt="Logo NGI Assure: letterlogo shaped like a tag">
</a>
</div>
</div>
</div>
<div class="text-center row">
<div class="col funding baseline">
<p>Rosenpass received funding and support through the <a href="https://prototypefund.de/en/project/post-quantum-vpn-mit-minimalen-privilegien/">ProtoType Fund's 14th round to reduce the privileges needed by the Rosenpass tool</a>. The ProtoType Fund is a project of the <a href="https://okfn.de/en/">Open Knowledge Foundation Germany</a>, funded by the <a href="https://www.bmbf.de/en/index.html">Federal Ministry of Education and Research (BMBF).</a></p>
</div>
<div class="col funding baseline">
<p>Rosenpass is also funded through NLNet's <a href="https://NLnet.nl/assure">NGI Assure</a> Fund, with financial support from the European Commission's <a href="https://ngi.eu">Next Generation Internet</a> programme, under the aegis of DG Communications Networks, Content and Technology. Funding has been provided for <a href="https://nlnet.nl/project/Rosenpass/">the initial Rosenpass project</a> and <a href="https://nlnet.nl/project/Rosenpass-API/">improvements to the Rosenpass API.</a></p>
</div>
</div>
</div>


{{< /blocks/section >}}
Expand Down
22 changes: 22 additions & 0 deletions static/css/rosenpass.css
Original file line number Diff line number Diff line change
Expand Up @@ -892,10 +892,32 @@ background-color: #00000095;

/* Contributors Page*/

@media(max-width: 768px){
.container.mobile-display {
display: block;
}
.container.large-display {
display: none;
}
}

@media(min-width: 768px){
.container.mobile-display {
display: none;
}
.container.large-display {
display: block;
}
}

.col.funding {
align-content: center;
}

.col.funding.baseline {
align-content: baseline;
}

.col.funding p {
width: 90%;
margin-left: auto;
Expand Down

0 comments on commit 8a84ef8

Please sign in to comment.