Skip to content

Commit 7b272ef

Browse files
committed
cleanup: add tuta sponsor
Yay tuta is a sponsor!
1 parent fd715c4 commit 7b272ef

File tree

2 files changed

+82
-0
lines changed

2 files changed

+82
-0
lines changed

docs/.vitepress/theme/custom.scss

+74
Original file line numberDiff line numberDiff line change
@@ -178,3 +178,77 @@ input[type="checkbox"] {
178178
}
179179
180180
*/
181+
182+
.usedby ul {
183+
margin: 0;
184+
padding: 0;
185+
display: grid;
186+
grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
187+
188+
@media screen and (max-width: 37.5rem) {
189+
grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
190+
}
191+
192+
min-width: 100%;
193+
gap: 0.625rem;
194+
195+
li {
196+
list-style: none;
197+
text-align: center;
198+
199+
a {
200+
display: flex;
201+
align-items: center;
202+
justify-content: center;
203+
height: 100%;
204+
padding: 1.25rem;
205+
text-align: center;
206+
background-color: var(--color-background-second);
207+
border-radius: 0.5rem;
208+
transition:
209+
transform 0.3s ease 0s,
210+
background-color 0.3s ease 0s;
211+
212+
@media (prefers-color-scheme: light) {
213+
&:hover {
214+
background-color: var(--color-background-mute);
215+
}
216+
}
217+
218+
@media (prefers-color-scheme: dark) {
219+
transition: all 0.3s;
220+
221+
&:hover {
222+
filter: grayscale(0) invert(0);
223+
background-color: rgb(255, 255, 255);
224+
225+
img {
226+
filter: grayscale(0) invert(0);
227+
box-shadow: none;
228+
transform: none;
229+
}
230+
}
231+
232+
img {
233+
filter: grayscale(1) invert(1);
234+
transition: all 0.3s;
235+
margin: 1.25rem;
236+
width: 12.5rem;
237+
border-radius: 0;
238+
}
239+
}
240+
241+
img {
242+
margin: 1.25rem;
243+
width: 12.5rem;
244+
border-radius: 0;
245+
246+
&:hover {
247+
box-shadow: none;
248+
transform: none;
249+
cursor: pointer;
250+
}
251+
}
252+
}
253+
}
254+
}

docs/index.md

+8
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,14 @@ Once you've installed the package, you will need to follow the [Guide](/guide/#p
4545

4646
If you want to contribute to Aplós, you can check the [Contributing](/contributing) page in the documentation. {.local-link}
4747

48+
## Sponsors
49+
50+
<section class="usedby">
51+
52+
- [![](https://tuta.com/assets/Logo_text.LuqsxYBF_Z2cigi2.webp#no-border#static)](https://tuta.com)
53+
54+
</section>
55+
4856
## Credits & Thanks To
4957

5058
Aplós whouldn't be possible without the following projects/people:

0 commit comments

Comments
 (0)