57 lines
1.4 KiB
Svelte
57 lines
1.4 KiB
Svelte
<script lang="ts">
|
|
import Layout from "../routes/+layout.svelte";
|
|
|
|
export let title: string;
|
|
export let iconUri: string = '';
|
|
|
|
const scaleKeyframes = [
|
|
"window-open",
|
|
"window-open-vertical",
|
|
"window-open-vertical",
|
|
"window-open-horizontal",
|
|
"window-open-horizontal",
|
|
"window-open-move-up",
|
|
"window-open-move-down",
|
|
"window-open-move-left",
|
|
"window-open-move-right",
|
|
];
|
|
$: chosenKeyframe = scaleKeyframes.at(Math.floor(Math.random() * scaleKeyframes.length))
|
|
</script>
|
|
|
|
<div
|
|
class="
|
|
flex flex-col
|
|
max-w-screen-md xl:max-w-screen-lg 2xl:max-w-screen-xl min-w-[30ch] lg:min-w-[40ch] w-full md:w-fit [height:fit-content]
|
|
border-ralsei-white border-ridge border-8 border-t-[12px]
|
|
bg-ralsei-black
|
|
animate-{chosenKeyframe}
|
|
"
|
|
>
|
|
<div
|
|
class="
|
|
p-1 border-ralsei-white border-8
|
|
bg-gradient-to-l from-ralsei-pink-neon to-ralsei-black to-75%
|
|
"
|
|
style="border-style: hidden hidden ridge hidden;"
|
|
>
|
|
<div class="flex bg-opacity-100 pixelate-bg">
|
|
<h1
|
|
class="font-monospace text-xl text-ralsei-pink-regular grow justify-self-start self-center p-name"
|
|
>
|
|
{title}
|
|
</h1>
|
|
{#if iconUri !== ''}
|
|
<img
|
|
class="justify-self-end self-center max-h-7"
|
|
style="image-rendering: pixelated;"
|
|
src={iconUri}
|
|
alt={iconUri}
|
|
/>
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
<div class="p-2 bg-gradient-to-tl to-ralsei-pink-neon/15 from-ralsei-pink-regular/20">
|
|
<slot />
|
|
</div>
|
|
</div>
|