Add contributors list

This commit is contained in:
Misode
2023-03-20 03:17:02 +01:00
parent a2feb3675c
commit cdf369442e
5 changed files with 850 additions and 61 deletions

View File

@@ -2096,39 +2096,45 @@ hr {
background-color: var(--selection) !important;
}
.sponsors {
.contributors {
margin: 40px auto;
display: flex;
flex-direction: column;
align-items: center;
}
.sponsors h3 {
.contributors h3 {
margin-bottom: 10px;
font-weight: normal;
color: var(--text-2);
}
.sponsors-list {
.contributors-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-bottom: 20px;
}
.sponsors-list > * {
.contributors-list > * {
margin: 3px;
border-radius: 50%;
background-color: var(--background-2);
width: 48px;
height: 48px;
width: 32px;
height: 32px;
transition: background-color 200ms;
}
.sponsors-list > * img {
.contributors-list.contributors-large > * {
width: 48px;
height: 48px;
}
.contributors-list > * img {
border-radius: 50%;
}
.sponsors-list > *:hover {
.contributors-list > *:hover {
background-color: var(--background-3);
}