various fixes

This commit is contained in:
2022-08-24 19:07:30 +03:00
parent 35c788df0f
commit 7ff06f1c7b
7 changed files with 40 additions and 32 deletions

View File

@@ -12,7 +12,8 @@
.web,
.email,
.picture,
.pgp {
.pgp,
.link {
background-color: var(--alt);
color: var(--alt-text);
font-size: 20px;

View File

@@ -37,18 +37,4 @@
font-weight: 500;
text-align: center;
}
.badge {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
img {
width: 270px;
background: var(--accent);
padding: 0.5rem;
border-radius: 10px;
}
</style>

View File

@@ -5,7 +5,7 @@
$: currentPage = $page.url.pathname;
const menus = [
{ name: "Instances", url: "/instances" },
{ name: "Services", url: "/services" },
{ name: "Projects", url: "/projects" },
{ name: "Minecraft", url: "/minecraft" },
{ name: "Donate", url: "/donate" },
@@ -46,12 +46,20 @@
<a href="https://github.com/ProjectSegfault/">
<div class="i-simple-icons:github" />
</a>
<div>
<div class="theme-toggle">
<ThemeToggle />
</div>
</div>
</nav>
<noscript>
<style>
.theme-toggle {
display: none !important;
}
</style>
</noscript>
<style>
nav {
background-color: var(--primary);