Compare commits
5 Commits
8f65cda3b9
...
8a916babab
Author | SHA1 | Date | |
---|---|---|---|
8a916babab | |||
d67a0eaa5a | |||
1844c78ec0 | |||
41e0234497 | |||
e54b4912cf |
@ -8,7 +8,7 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="group">
|
<div class="group">
|
||||||
<div class="absolute scale-0 transition-all [transition-duration:300ms] opacity-0 group-hover:scale-100 group-hover:opacity-100 {y} {x} {targetY} {targetX} transform-gpu">
|
<div class="absolute scale-0 transition-all [transition-timing-function:cubic-bezier(0.4,0,0.2,1.6)] [transition-duration:300ms] opacity-0 group-hover:scale-100 group-hover:opacity-100 {y} {x} {targetY} {targetX}">
|
||||||
<Window tooltip>
|
<Window tooltip>
|
||||||
<slot name="tooltipContent">Hello world!</slot>
|
<slot name="tooltipContent">Hello world!</slot>
|
||||||
</Window>
|
</Window>
|
||||||
|
@ -70,7 +70,7 @@
|
|||||||
<filter id="squiggly-{index}">
|
<filter id="squiggly-{index}">
|
||||||
<feTurbulence
|
<feTurbulence
|
||||||
id="turbulence"
|
id="turbulence"
|
||||||
baseFrequency="0.02"
|
baseFrequency=0.03
|
||||||
numOctaves="3"
|
numOctaves="3"
|
||||||
result="noise"
|
result="noise"
|
||||||
seed={index}
|
seed={index}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
import { PUBLIC_BASE_URL } from '$env/static/public';
|
import { PUBLIC_BASE_URL } from '$env/static/public';
|
||||||
import Tooltip from '../components/tooltip.svelte';
|
import Tooltip from '../components/tooltip.svelte';
|
||||||
import Window from '../components/window.svelte';
|
import Window from '../components/window.svelte';
|
||||||
|
import LatestStuff from './lateststuff.md';
|
||||||
|
|
||||||
export let data;
|
export let data;
|
||||||
</script>
|
</script>
|
||||||
@ -65,16 +66,7 @@
|
|||||||
</Window>
|
</Window>
|
||||||
<Window title="latest stuff" style="mt-auto">
|
<Window title="latest stuff" style="mt-auto">
|
||||||
<div class="prose prose-ralsei prose-img:m-0 leading-6">
|
<div class="prose prose-ralsei prose-img:m-0 leading-6">
|
||||||
<p>
|
<LatestStuff/>
|
||||||
new game prototype thingy <a href="https://yusdacra.itch.io/lightfelt">at itch.io page</a
|
|
||||||
>! spent a lot of time learning and designing the environment and scene stuff :3
|
|
||||||
trenchbroom and func_godot were used mainly!
|
|
||||||
</p>
|
|
||||||
<img
|
|
||||||
class="md:max-w-[39.5rem]"
|
|
||||||
src="https://img.itch.zone/aW1hZ2UvMzExNTU5My8xODYyMjUwOS5qcGVn/original/%2BSrxFo.jpeg"
|
|
||||||
alt="lightfelt screenshot"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
</Window>
|
</Window>
|
||||||
</div>
|
</div>
|
||||||
|
@ -62,9 +62,8 @@ import Window from '../../components/window.svelte';
|
|||||||
<p class="text-error">you are ratelimited, try again in 30 seconds</p>
|
<p class="text-error">you are ratelimited, try again in 30 seconds</p>
|
||||||
{/if}
|
{/if}
|
||||||
{#if data.sendError}
|
{#if data.sendError}
|
||||||
<p class="text-error">got error trying to send post</p>
|
<details class="w-[50ch]">
|
||||||
<details>
|
<summary class="text-error">got error trying to send post</summary>
|
||||||
<summary>error</summary>
|
|
||||||
<p>{data.sendError}</p>
|
<p>{data.sendError}</p>
|
||||||
</details>
|
</details>
|
||||||
{/if}
|
{/if}
|
||||||
@ -79,9 +78,8 @@ import Window from '../../components/window.svelte';
|
|||||||
woops, looks like you are being ratelimited, try again in like half a minute :3
|
woops, looks like you are being ratelimited, try again in like half a minute :3
|
||||||
</p>
|
</p>
|
||||||
{:else if data.getError}
|
{:else if data.getError}
|
||||||
<p class="text-error">got error trying to fetch entries, pls tell me about this</p>
|
<details class="w-[50ch]">
|
||||||
<details>
|
<summary class="text-error">got error trying to fetch entries</summary>
|
||||||
<summary>error</summary>
|
|
||||||
<p>{data.getError}</p>
|
<p>{data.getError}</p>
|
||||||
</details>
|
</details>
|
||||||
{:else}
|
{:else}
|
||||||
|
9
src/routes/lateststuff.md
Normal file
9
src/routes/lateststuff.md
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
+++
|
||||||
|
layout = false
|
||||||
|
+++
|
||||||
|
|
||||||
|
new game prototype thingy at [itch.io page](https://yusdacra.itch.io/lightfelt)!
|
||||||
|
spent a lot of time learning and designing the environment and scene stuff :3
|
||||||
|
[trenchbroom](https://trenchbroom.github.io/) and [func_godot](https://func-godot.github.io/func_godot_docs/FuncGodot%20Manual/FuncGodot%20Manual.html) were used mainly!
|
||||||
|
|
||||||
|
![lightfelt screenshot](https://img.itch.zone/aW1hZ2UvMzExNTU5My8xODYyMjUwOS5qcGVn/original/%2BSrxFo.jpeg)
|
@ -28,6 +28,11 @@
|
|||||||
content: '>>>> ';
|
content: '>>>> ';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.prose h1::after,.prose h2::after,.prose h3::after,.prose h4::after {
|
||||||
|
@apply motion-safe:animate-blink;
|
||||||
|
content: '_';
|
||||||
|
}
|
||||||
|
|
||||||
.prose a {
|
.prose a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
@ -139,6 +144,18 @@
|
|||||||
.dither-bg {
|
.dither-bg {
|
||||||
backdrop-filter: url("#dither");
|
backdrop-filter: url("#dither");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@keyframes blink {
|
||||||
|
0% {
|
||||||
|
opacity: 1.0;
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
opacity: 0.0;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
opacity: 1.0;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@layer utilities {
|
@layer utilities {
|
||||||
|
@ -31,6 +31,7 @@ export default {
|
|||||||
animation: {
|
animation: {
|
||||||
'bounce-slow': 'bounce 3s infinite',
|
'bounce-slow': 'bounce 3s infinite',
|
||||||
'pulse-fast': 'pulse 1s cubic-bezier(0.4, 0, 0.6, 1) infinite',
|
'pulse-fast': 'pulse 1s cubic-bezier(0.4, 0, 0.6, 1) infinite',
|
||||||
|
'blink': 'blink 1s step-start infinite',
|
||||||
},
|
},
|
||||||
colors: {
|
colors: {
|
||||||
ralsei: {
|
ralsei: {
|
||||||
|
Loading…
Reference in New Issue
Block a user