2022-06-18 00:22:07 +05:30
|
|
|
<script>
|
2022-06-18 21:56:58 +05:30
|
|
|
import * as strings from "$lib/strings";
|
2022-06-21 23:39:59 +05:30
|
|
|
import { t } from '$lib/translations';
|
2022-06-18 00:22:07 +05:30
|
|
|
</script>
|
|
|
|
|
|
|
|
<nav>
|
2022-06-18 21:56:58 +05:30
|
|
|
<a class="brand" href="/">
|
2022-06-19 19:30:18 +05:30
|
|
|
<img src="/logo.png" alt="{strings.NAME} logo" />
|
2022-06-18 21:56:58 +05:30
|
|
|
<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>
|
2022-06-18 00:22:07 +05:30
|
|
|
|
2022-06-18 21:56:58 +05:30
|
|
|
<div class="links">
|
2022-06-21 23:39:59 +05:30
|
|
|
<a href="https://instances.projectsegfau.lt/">{$t('common.navbarInstances')}</a>
|
|
|
|
<a href="/minecraft">{$t('common.navbarMinecraft')}</a>
|
|
|
|
<a href="/donate">{$t('common.navbarDonate')}</a>
|
2022-06-22 00:30:26 +05:30
|
|
|
<a href="wiki.projectsegfau.lt/about/faq">{$t('common.FAQ')}</a>
|
2022-06-21 23:39:59 +05:30
|
|
|
<a href="/contact">{$t('common.navbarContact')}</a>
|
|
|
|
<a href="https://blog.projectsegfau.lt/">{$t('common.Blog')}</a>
|
2022-06-18 21:56:58 +05:30
|
|
|
</div>
|
2022-06-18 00:22:07 +05:30
|
|
|
</nav>
|
|
|
|
|
|
|
|
<style>
|
2022-06-18 21:56:58 +05:30
|
|
|
nav {
|
|
|
|
background-color: var(--secondary);
|
|
|
|
padding: 1rem;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
2022-06-18 00:22:07 +05:30
|
|
|
|
2022-06-18 21:56:58 +05:30
|
|
|
a.brand {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2022-06-18 00:22:07 +05:30
|
|
|
|
2022-06-18 21:56:58 +05:30
|
|
|
.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;
|
|
|
|
}
|
2022-06-18 11:15:20 +05:30
|
|
|
|
2022-06-18 21:56:58 +05:30
|
|
|
.links > *:hover {
|
|
|
|
background-color: var(--accent-tertiary);
|
|
|
|
text-decoration: none;
|
|
|
|
transition: all 0.5s;
|
|
|
|
color: var(--secondary);
|
|
|
|
}
|
2022-06-18 18:07:23 +05:30
|
|
|
|
2022-06-18 21:56:58 +05:30
|
|
|
.links > *:active {
|
|
|
|
background-color: var(--accent-primary);
|
|
|
|
text-decoration: none;
|
|
|
|
transition: all 0.5s;
|
|
|
|
color: var(--secondary);
|
|
|
|
}
|
2022-06-18 14:47:19 +05:30
|
|
|
|
2022-06-18 21:56:58 +05:30
|
|
|
img {
|
|
|
|
height: 36px;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
2022-06-18 00:22:07 +05:30
|
|
|
|
2022-06-18 21:56:58 +05:30
|
|
|
div.links {
|
|
|
|
display: flex;
|
|
|
|
gap: 8px;
|
|
|
|
}
|
2022-06-18 00:22:07 +05:30
|
|
|
|
2022-06-18 21:56:58 +05:30
|
|
|
@media only screen and (max-width: 820px) {
|
|
|
|
nav {
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
|
|
|
}
|
2022-06-18 00:22:07 +05:30
|
|
|
|
2022-06-18 21:56:58 +05:30
|
|
|
div.links {
|
|
|
|
flex-direction: column;
|
|
|
|
margin-top: 10px;
|
|
|
|
gap: 19px;
|
|
|
|
}
|
|
|
|
}
|
2022-06-18 18:31:38 +05:30
|
|
|
</style>
|