mirror of
https://github.com/YouHaveTrouble/youhavetrouble.github.io.git
synced 2026-05-12 14:26:56 +00:00
122 lines
4.2 KiB
Plaintext
122 lines
4.2 KiB
Plaintext
<section>
|
|
<div class="grid">
|
|
<a href="https://github.com/YouHaveTrouble" class="social-link" target="_blank" rel="external">
|
|
<img src="/assets/icons/github.svg" alt="" aria-hidden="true" draggable="false" loading="eager">
|
|
<span>GitHub</span>
|
|
</a>
|
|
<a href="https://discord.youhavetrouble.me" class="social-link" target="_blank" rel="external">
|
|
<img src="/assets/icons/discord.svg" alt="" aria-hidden="true" draggable="false" loading="eager">
|
|
<span>Discord</span>
|
|
</a>
|
|
<a href="https://ko-fi.com/youhavetrouble" class="social-link" target="_blank" rel="external">
|
|
<img src="/assets/icons/kofi.svg" alt="" aria-hidden="true" draggable="false" loading="eager">
|
|
<span>Ko-fi</span>
|
|
</a>
|
|
<a href="https://steamcommunity.com/id/YouHavetrouble" class="social-link" target="_blank" rel="external">
|
|
<img src="/assets/icons/steam.svg" alt="" aria-hidden="true" draggable="false" loading="eager">
|
|
<span>Steam</span>
|
|
</a>
|
|
<a href="https://www.youtube.com/@YouHaveTrouble" class="social-link" target="_blank" rel="external">
|
|
<img src="/assets/icons/youtube.svg" alt="" aria-hidden="true" draggable="false" loading="eager">
|
|
<span>YouTube</span>
|
|
</a>
|
|
<a href="https://modrinth.com/user/YouHaveTrouble" class="social-link" target="_blank" rel="external">
|
|
<img src="/assets/icons/modrinth.svg" alt="" aria-hidden="true" draggable="false" loading="eager">
|
|
<span>Modrinth</span>
|
|
</a>
|
|
<a href="https://wakatime.com/@YouHaveTrouble" class="social-link" target="_blank" rel="external">
|
|
<img src="/assets/icons/wakatime.svg" alt="" aria-hidden="true" draggable="false" loading="eager">
|
|
<span>WakaTime</span>
|
|
</a>
|
|
<a href="https://www.linkedin.com/in/pawel-youhavetrouble-michalewski/" class="social-link" target="_blank"
|
|
rel="external">
|
|
<img src="/assets/icons/linkedin.svg" alt="" aria-hidden="true" draggable="false" loading="eager">
|
|
<span>LinkedIn</span>
|
|
</a>
|
|
<a href="https://x.com/YouHaveTrouble" class="social-link" target="_blank" rel="external">
|
|
<img src="/assets/icons/x.svg" alt="" aria-hidden="true" draggable="false" loading="eager">
|
|
<span>X</span>
|
|
</a>
|
|
<a href="https://bsky.app/profile/youhavetrouble.bsky.social" class="social-link" target="_blank"
|
|
rel="external">
|
|
<img src="/assets/icons/bsky.svg" alt="" aria-hidden="true" draggable="false" loading="eager">
|
|
<span>BlueSky</span>
|
|
</a>
|
|
<a href="mailto://contact@youhavetrouble.me" class="social-link" target="_blank"
|
|
rel="external">
|
|
<img src="/assets/icons/email.svg" alt="" aria-hidden="true" draggable="false" loading="eager">
|
|
<span>Email</span>
|
|
</a>
|
|
</div>
|
|
</section>
|
|
|
|
<style lang="scss" scoped>
|
|
section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
max-width: 100%;
|
|
text-align: center;
|
|
gap: 1.5rem;
|
|
font-size: 1rem;
|
|
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, 8rem);
|
|
max-width: 100%;
|
|
justify-content: center;
|
|
width: 100%;
|
|
gap: 1rem;
|
|
padding-block: 1rem;
|
|
|
|
a {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
height: 5.5rem;
|
|
text-decoration: none;
|
|
padding: 0.5rem;
|
|
gap: 0.25rem;
|
|
border-radius: 0.25rem;
|
|
|
|
span {
|
|
color: var(--text-secondary);
|
|
text-align: center;
|
|
transition: color 0.2s ease;
|
|
position: relative;
|
|
&::after {
|
|
content: "";
|
|
position: absolute;
|
|
bottom: 0.25rem;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 0;
|
|
height: 1px;
|
|
background: var(--text-secondary);
|
|
transition: width 0.2s ease;
|
|
}
|
|
}
|
|
|
|
img {
|
|
width: 3rem;
|
|
height: 3rem;
|
|
transition: transform 0.2s ease;
|
|
}
|
|
|
|
&:hover {
|
|
color: var(--text-main);
|
|
img {
|
|
transform: translateY(-0.1rem);
|
|
}
|
|
}
|
|
&:focus-within {
|
|
background-color: #548e9b;
|
|
}
|
|
&:focus-visible {
|
|
outline: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style> |