Files
pages/src/lib/header.svelte

39 lines
1.0 KiB
Svelte
Raw Normal View History

2025-03-31 23:07:29 +02:00
<div class="center-stuff">
<p class="banner-text" style="margin-right: 8px;">denizk0461's</p>
<a class="banner-image" href="/">
<img src="/favicon.webp"/>
2025-03-31 23:07:29 +02:00
</a>
<p class="banner-text" style="margin-left: 8px;">website</p>
</div>
<style>
@keyframes header-text-anim {
0% { color: #96C9DC; }
33% { color: #9CE391; }
66% { color: #E03E59;}
100% { color: #96C9DC; }
}
.center-stuff {
width: fit-content;
display: flex;
align-items: center;
margin-left: auto;
margin-right: auto;
}
.banner-image {
width: 64px;
margin-top: 16px;
margin-bottom: 16px;
2025-03-31 23:07:29 +02:00
}
.banner-text {
width: fit-content;
font-family: 'Space Mono', monospace;
font-weight: 700;
color: var(--color-highlight);
margin: 0px 24px;
animation-name: header-text-anim;
animation-duration: 2.13333333333s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
</style>