2022-06-17 21:52:07 +03:00
|
|
|
<script>
|
2022-06-24 19:02:23 +03:00
|
|
|
import { page } from "$app/stores";
|
2022-06-17 21:52:07 +03:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<footer>
|
2022-06-24 19:02:23 +03:00
|
|
|
{#if $page.url.pathname === "/"}
|
2022-08-05 17:01:15 +03:00
|
|
|
<div class="badge">
|
|
|
|
<a
|
|
|
|
href="https://www.abuseipdb.com/user/82331"
|
|
|
|
title="AbuseIPDB is an IP address blacklist for webmasters and sysadmins to report IP addresses engaging in abusive behavior on their networks"
|
|
|
|
style="width: fit-content; padding: 1rem;"
|
|
|
|
>
|
|
|
|
<img
|
|
|
|
src="https://www.abuseipdb.com/contributor/82331.svg"
|
|
|
|
alt="AbuseIPDB Contributor Badge"
|
|
|
|
/>
|
|
|
|
</a>
|
|
|
|
</div>
|
2022-06-24 19:02:23 +03:00
|
|
|
{/if}
|
2022-06-18 19:26:58 +03:00
|
|
|
<div class="content">
|
2022-08-04 19:28:05 +02:00
|
|
|
<span>© 2021 - present, Project Segfault <a href="/team">team</a></span>
|
2022-08-05 17:01:15 +03:00
|
|
|
<span
|
|
|
|
>Made with <a href="https://kit.svelte.dev/">SvelteKit</a> and
|
|
|
|
released under the
|
|
|
|
<a href="https://opensource.org/licenses/MIT/">MIT license</a
|
|
|
|
>.</span
|
|
|
|
>
|
2022-06-18 19:26:58 +03:00
|
|
|
</div>
|
2022-06-17 21:52:07 +03:00
|
|
|
</footer>
|
|
|
|
|
|
|
|
<style>
|
2022-06-18 19:26:58 +03:00
|
|
|
footer {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
font-size: 20px;
|
2022-06-24 19:02:23 +03:00
|
|
|
position: sticky;
|
|
|
|
top: 100vh;
|
2022-06-18 19:26:58 +03:00
|
|
|
}
|
2022-06-17 21:52:07 +03:00
|
|
|
|
2022-06-18 19:26:58 +03:00
|
|
|
div.content {
|
2022-07-06 16:10:25 +03:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2022-08-04 18:50:02 +03:00
|
|
|
flex-direction: column;
|
|
|
|
border-top: 1px solid var(--grey);
|
2022-08-05 17:01:15 +03:00
|
|
|
padding: 0.5rem;
|
2022-06-18 19:26:58 +03:00
|
|
|
}
|
2022-06-17 21:52:07 +03:00
|
|
|
|
2022-08-04 18:50:02 +03:00
|
|
|
div.content > * {
|
|
|
|
color: var(--text);
|
|
|
|
font-size: 13px;
|
|
|
|
font-weight: 500;
|
|
|
|
text-align: center;
|
2022-06-18 19:26:58 +03:00
|
|
|
}
|
2022-06-24 19:02:23 +03:00
|
|
|
|
2022-08-05 17:01:15 +03:00
|
|
|
.badge {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2022-08-04 19:28:05 +02:00
|
|
|
|
2022-06-24 19:02:23 +03:00
|
|
|
img {
|
|
|
|
width: 270px;
|
2022-08-06 16:04:03 +03:00
|
|
|
background: var(--accent);
|
2022-06-24 19:02:23 +03:00
|
|
|
padding: 0.5rem;
|
|
|
|
border-radius: 10px;
|
|
|
|
}
|
2022-06-18 19:26:58 +03:00
|
|
|
</style>
|