Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sponsors graphics #33

Merged
merged 2 commits into from
Jan 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 20 additions & 4 deletions src/components/Sponsors.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
---
import { Image } from 'astro:assets';
import clouds from '../graphics/clouds_stars.svg';
import sheep from '../graphics/sheep.svg';
import citrisLogo from '../graphics/sponsors/citris.webp';
import wealthfrontLogo from '../graphics/sponsors/wealthfront.webp';
import bstfLogo from '../graphics/sponsors/bstf.webp';
Expand Down Expand Up @@ -31,13 +33,13 @@ import witiLogo from '../graphics/sponsors/witi.webp';
<a href="https://www.ffwd.org/" target="_blank">
<Image src={ffwdLogo} alt="Fast Forward" />
</a>
<a
href="https://citris-uc.org/research/edge-in-tech-initiative/"
target="_blank"
>
<a href="https://edge.berkeley.edu" target="_blank">
<Image src={witiLogo} alt="Women in Tech Initiaive" />
</a>
</div>

<Image class="clouds" src={clouds} alt="clouds and stars" />
<Image class="sheep" src={sheep} alt="sheep" />
</section>

<style lang="scss">
Expand Down Expand Up @@ -90,5 +92,19 @@ import witiLogo from '../graphics/sponsors/witi.webp';
flex-shrink: 0;
}
}

.clouds {
position: absolute;
left: 0;
bottom: -6rem;
z-index: -1;
}

.sheep {
position: absolute;
right: 0;
top: 4rem;
z-index: -1;
}
}
</style>