mirror of
https://github.com/ProjectSegfault/website.git
synced 2025-04-05 02:25:26 +05:30
50 lines
769 B
Svelte
50 lines
769 B
Svelte
<script lang="ts">
|
|
export let url: string = "";
|
|
let classes: string = "";
|
|
export { classes as class };
|
|
</script>
|
|
|
|
<a
|
|
href={url}
|
|
class="border-none rounded-2 p-2 cursor-pointer font-primary text-secondary decoration-none w-fit text-xl flex items-center {classes}"
|
|
>
|
|
<slot />
|
|
</a>
|
|
|
|
<style>
|
|
.web,
|
|
.email,
|
|
.picture,
|
|
.pgp,
|
|
.link {
|
|
@apply bg-alt text-alt-text transition-all duration-250;
|
|
}
|
|
|
|
.web:hover,
|
|
.email:hover,
|
|
.picture:hover,
|
|
.pgp:hover {
|
|
@apply bg-accent text-alt;
|
|
}
|
|
|
|
.matrixcolored {
|
|
@apply bg-alt text-alt-text;
|
|
}
|
|
|
|
.discordcolored {
|
|
@apply bg-[#5865f2] text-white;
|
|
}
|
|
|
|
.gitcolored {
|
|
@apply bg-[#f05032] text-white;
|
|
}
|
|
|
|
.githubcolored {
|
|
@apply bg-alt text-alt-text;
|
|
}
|
|
|
|
.torcolored {
|
|
@apply bg-[#7d4698] text-white;
|
|
}
|
|
</style>
|