yay i did it :DDD

This commit is contained in:
Ruben 2023-11-06 09:25:37 -06:00
commit b1266ce74d
No known key found for this signature in database
2 changed files with 24 additions and 4 deletions

View file

@ -180,7 +180,9 @@
<footer>
<a href="https://git.gay/sneexy/pages" target="_blank">site source</a>
<span class="dot"></span>
<p>nuts</p>
<p><a href="https://www.jetbrains.com/lp/mono" target="_blank">JBM</a> <a href="/assets/jetbrainsmono/OFL.txt" target="_blank">license</a>/<a href="/assets/jetbrainsmono/AUTHORS.txt" target="_blank">authors</a></p>
<span class="dot"></span>
<p>made with love, lack of sleep and procrastination</p>
</footer>
<img class="yoshi" src="/assets/yoshi.gif" alt="GIF of a dancing yoshi" />

View file

@ -300,12 +300,17 @@ footer {
flex-direction: row;
justify-content: center;
margin-bottom: 2rem;
font-size: 16px;
}
footer > a, footer > p {
footer > a, footer > p, footer > p > a {
color: var(--header);
font-size: 16px;
}
footer > a {
margin-top: 20px;
}
/* -- end of usual css things -- */
/* -- styling the rest of the elements/custom stuff -- */
@ -569,11 +574,24 @@ footer > .dot {
margin-bottom: 20px;
}
.fedi, .messaging, .platforms, .misc, .shitcord, .warning {
.fedi, .messaging, .platforms, .misc, .warning {
flex-direction: column;
}
.dot2:not(:nth-child(1)) {
.fedi > .dot, .messaging > .dot, .platforms > .dot, .misc > .dot {
display: none;
}
footer {
flex-direction: column;
text-align: center;
}
footer > p, footer > a, footer > p > a {
margin-top: 5px;
}
footer > .dot {
display: none;
}
}