mirror of
https://github.com/ProjectSegfault/website.git
synced 2024-12-25 22:50:18 +05:30
f980b9d0a7
Signed-off-by: Alex J <odyssey346@disroot.org>
93 lines
1.8 KiB
Svelte
93 lines
1.8 KiB
Svelte
<script>
|
|
import * as strings from "$lib/strings";
|
|
import { t } from '$lib/translations';
|
|
</script>
|
|
|
|
<nav>
|
|
<a class="brand" href="/">
|
|
<img src="/logo.png" alt="{strings.NAME} logo" />
|
|
<span
|
|
style="color: var(--accent-secondary); margin-left: 4px; margin-right: 4px;"
|
|
>{strings.PROJECT}</span
|
|
>
|
|
<span style="color: var(--accent-primary); margin-right: 8px;"
|
|
>{strings.SEGFAULT}</span
|
|
>
|
|
</a>
|
|
|
|
<div class="links">
|
|
<a href="https://instances.projectsegfau.lt/">{$t('common.navbarInstances')}</a>
|
|
<a href="/minecraft">{$t('common.navbarMinecraft')}</a>
|
|
<a href="/donate">{$t('common.navbarDonate')}</a>
|
|
<a href="/faq">{$t('common.FAQ')}</a>
|
|
<a href="/contact">{$t('common.navbarContact')}</a>
|
|
<a href="https://blog.projectsegfau.lt/">{$t('common.Blog')}</a>
|
|
</div>
|
|
</nav>
|
|
|
|
<style>
|
|
nav {
|
|
background-color: var(--secondary);
|
|
padding: 1rem;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
a.brand {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.links > * {
|
|
background-color: var(--tertiary);
|
|
border: none;
|
|
border-radius: 10px;
|
|
padding: 1rem;
|
|
cursor: pointer;
|
|
color: var(--text);
|
|
font-family: var(--font-primary);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.links > *:hover {
|
|
background-color: var(--accent-tertiary);
|
|
text-decoration: none;
|
|
transition: all 0.5s;
|
|
color: var(--secondary);
|
|
}
|
|
|
|
.links > *:active {
|
|
background-color: var(--accent-primary);
|
|
text-decoration: none;
|
|
transition: all 0.5s;
|
|
color: var(--secondary);
|
|
}
|
|
|
|
img {
|
|
height: 36px;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
div.links {
|
|
display: flex;
|
|
gap: 8px;
|
|
}
|
|
|
|
@media only screen and (max-width: 820px) {
|
|
nav {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
div.links {
|
|
flex-direction: column;
|
|
margin-top: 10px;
|
|
gap: 19px;
|
|
}
|
|
}
|
|
</style>
|