Skip to content

Commit

Permalink
Merge pull request #32 from fossfunders/cwlw/add-sequoia
Browse files Browse the repository at this point in the history
Add Sequoia
  • Loading branch information
chadwhitacre authored Feb 23, 2024
2 parents 5bb6bc3 + 0476938 commit ee5205e
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 8 deletions.
16 changes: 13 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>FOSS Funders</title>
<style>
@import url("./style.css");
@import url("./style.css?1");
</style>
<meta property="og:title" content="FOSS Funders" />
<meta property="og:type" content="website" />
Expand All @@ -18,7 +18,11 @@
rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%2210 0 100 100%22><text y=%22.90em%22 font-size=%2290%22>💸</text></svg>"
/>
<script defer data-domain="fossfunders.com" src="https://plausible.io/js/script.js"></script>
<script
defer
data-domain="fossfunders.com"
src="https://plausible.io/js/script.js"
></script>
</head>
<body>
<article>
Expand Down Expand Up @@ -112,7 +116,11 @@ <h2>Who?</h2>

<!--
Keep this list alphabetized, should be easy with title attr first.
Keep this list alphabetized, should be easy with title attr
first. We need an even number of list elements to balance the
columns for some reason, so add this to the end as needed:
<li class="empty"></li>
-->

Expand All @@ -126,10 +134,12 @@ <h2>Who?</h2>
<li><a title="Prisma" href="https://prismaio.notion.site/061d28a663464cd6bf39b34ca73f29ab"><img src="./logos/prisma.svg" alt="Prisma logo"></a></li>
<li><a title="Pydantic" href="https://twitter.com/samuel_colvin/status/1702636501425647640"><img src="./logos/pydantic.svg" alt="Pydantic logo"></a></li>
<li><a title="Sentry" href="https://blog.sentry.io/we-just-gave-500-000-dollars-to-open-source-maintainers/"><img src="./logos/sentry.svg" alt="Sentry logo"></a></li>
<li><a title="Sequoia" href="https://www.sequoiacap.com/article/open-source-fellowship-applications/"><img src="./logos/sequoia.svg" alt="Sequoia logo"></a></li>
<li><a title="Sourcegraph" href="https://handbook.sourcegraph.com/departments/cto/community/#foss-contributor-fund"><img src="./logos/sourcegraph.svg" alt="Sourcegraph logo"></a></li>
<li><a title="Spotify" href="https://engineering.atspotify.com/2023/10/announcing-the-recipients-of-the-2023-spotify-foss-fund/"><img src="./logos/spotify.png" alt="Spotify logo"></a></li>
<li><a title="Tarsnap" href="https://www.daemonology.net/blog/2023-10-25-2%5E18-dollars-to-open-source.html"><img src="./logos/tarsnap.png" alt="Tarsnap logo"></a></li>
<li><a title="Vercel" href="https://astro.build/blog/vercel-official-hosting-partner/"><img src="./logos/vercel.svg" alt="Vercel logo"></a></li>
<li class="empty"></li>

</ul>
</div>
Expand Down
1 change: 1 addition & 0 deletions logos/sequoia.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 24 additions & 5 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,24 @@ ul {
li {
display: block;
list-style: none;
height: 128px;
text-align: center;
&.empty {
display: none;
}
}
li img {
li a {
display: block;
height: 48px;
max-height: 48px;
max-width: 80%;
margin: 0 auto;

img {
display: block;
max-height: 48px;
max-width: 100%;
margin: 0 auto 80px;
}
}

.companies .content {
Expand All @@ -113,9 +127,6 @@ li img {
.companies ul {
margin-top: 80px;
}
.companies li img {
margin: 0 auto 80px;
}

.book img {
margin-bottom: 40px;
Expand Down Expand Up @@ -147,6 +158,14 @@ table {
}
.companies ul {
columns: 2;
li {
&.empty {
display: block;
}
a {
max-width: 60%;
}
}
}
}
@media (min-width: 650px) {
Expand Down

0 comments on commit ee5205e

Please sign in to comment.