feat: Style name heading and nav-link

This commit is contained in:
Leni Aniva 2024-10-15 13:51:46 -07:00
parent 8762763390
commit 72b4fd2550
Signed by: aniva
GPG Key ID: 4D9B1C8D10EA4C50
4 changed files with 17 additions and 8 deletions

View File

@ -37,6 +37,9 @@
--ring: 20 14.3% 4.1%; --ring: 20 14.3% 4.1%;
--radius: 0.5rem; --radius: 0.5rem;
--name: theme('colors.java.800');
--navlink: theme('colors.eucalyptus.400');
} }
.dark { .dark {
@ -68,6 +71,8 @@
--destructive-foreground: 60 9.1% 97.8%; --destructive-foreground: 60 9.1% 97.8%;
--ring: 24 5.7% 82.9%; --ring: 24 5.7% 82.9%;
--name: theme('colors.java.300');
--navlink: theme('colors.eucalyptus.200');
} }
} }
@ -107,6 +112,7 @@ a, button {
text-shadow: 0 0 5px; text-shadow: 0 0 5px;
} }
.nav-link { .nav-link {
color: var(--navlink);
@apply text-lg; @apply text-lg;
font-weight: 500; font-weight: 500;
font-family: serif; font-family: serif;

View File

@ -19,7 +19,7 @@
} }
</script> </script>
<button on:click={toggleTheme} aria-label="Toggle Theme"> <button class="nav-link" on:click={toggleTheme} aria-label="Toggle Theme">
{#if $theme === "tokiwa"} {#if $theme === "tokiwa"}
<Sun /> <Sun />
{:else} {:else}

View File

@ -51,15 +51,18 @@
style="padding-bottom: {(1 - progress) * 50}vh" style="padding-bottom: {(1 - progress) * 50}vh"
> >
<div id="navbar" class="h-5 items-center space-x-4 text-sm"> <div id="navbar" class="h-5 items-center space-x-4 text-sm">
<a href="#bio">Bio</a> <a class="nav-link" href="#bio">Bio</a>
<Separator class="bg-gray-500 dark:bg-gray-100" orientation="vertical" /> <Separator class="bg-gray-500 dark:bg-gray-100" orientation="vertical" />
{#each routes as item} {#each routes as item}
{#if item.route !== "/"} {#if item.route !== "/"}
<a href={item.route} class:disabled-link={item.disabled}>{item.name}</a> <a
href={item.route}
class="nav-link"
class:disabled-link={item.disabled}>{item.name}</a>
<Separator class="bg-gray-500 dark:bg-gray-100" orientation="vertical" /> <Separator class="bg-gray-500 dark:bg-gray-100" orientation="vertical" />
{/if} {/if}
{/each} {/each}
<a class="icon" href="/rss.xml"><Rss /></a> <a class="icon nav-link" href="/rss.xml"><Rss /></a>
<Separator class="bg-gray-500 dark:bg-gray-100" orientation="vertical" /> <Separator class="bg-gray-500 dark:bg-gray-100" orientation="vertical" />
<ThemeSwitch /> <ThemeSwitch />
</div> </div>
@ -136,7 +139,7 @@
@apply bg-background; @apply bg-background;
@apply dark:bg-gray-800; @apply dark:bg-gray-800;
box-shadow: box-shadow:
0px -5px 10px 10px rgba(200,200,200,0.4); 0px -5px 10px 10px var(--foreground);
} }
#bio { #bio {
max-width: max(50vw, 100vh); max-width: max(50vw, 100vh);
@ -149,14 +152,14 @@
font-family: serif; font-family: serif;
font-size: min(10vw, 60px); font-size: min(10vw, 60px);
display: inline-block; display: inline-block;
color: theme('colors.java.800'); color: var(--name);
} }
#avatar { #avatar {
line-height: 0; line-height: 0;
display: inline-block; display: inline-block;
margin: 5px; margin: 5px;
margin-right: auto; margin-right: auto;
border: 4px solid theme('colors.eucalyptus.500'); border: 1px solid var(--name);
border-radius: 50%; border-radius: 50%;
aspect-ratio: 1; aspect-ratio: 1;
max-width: 20%; max-width: 20%;

View File

@ -29,7 +29,7 @@
font-family: serif; font-family: serif;
font-size: 3rem; font-size: 3rem;
font-weight: normal; font-weight: normal;
color: theme('colors.java.800'); color: var(--name);
} }
#navbar { #navbar {
display: flex; display: flex;