feat: repo links, better contrib hover appearance

This commit is contained in:
afn
2022-10-12 23:37:26 -04:00
parent dfd26655e5
commit 122c0c76de
3 changed files with 47 additions and 49 deletions

View File

@@ -1,12 +1,8 @@
<script lang="ts">
import ContributorHost from '$lib/components/molecules/ContributorHost.svelte';
</script>
<div class="wrapper contrib-grid">
<h1>
<span class="redder">Re</span>Vanced Contributors
</h1>
<ContributorHost repo="cli"/>
<ContributorHost repo="patcher"/>
<ContributorHost repo="patches"/>
@@ -15,36 +11,10 @@
</div>
<style>
.redder {
color: var(--red);
}
h1 {
text-align: center;
color: var(--white);
font-weight: 700;
font-size: 5rem;
letter-spacing: -0.04em;
line-height: 1em;
}
.contrib-grid {
display: flex;
flex-direction: column;
gap: 2rem;
gap: 3rem;
margin-bottom: 3rem;
}
@media screen and (max-width: 1919px) {
h1 {
font-size: 3.5rem;
}
}
@media screen and (max-width: 1052px) {
h1 {
font-size: 2.5rem;
}
}
@media screen and (max-width: 768px) {
h1 {
font-size: 2rem;
}
}
</style>