diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index f6eea9b..c4a6fca 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -456,22 +456,26 @@

-
+
{isDev ? "Dev Edition | " : ""}{currentDate}
- +
+ +
{#if !isWon} - +
+ +
{:else} {/if} - +
+ +
{#if isWon} - +
+ +
{/if}
diff --git a/src/routes/layout.css b/src/routes/layout.css index 77a35d8..a2aae8e 100644 --- a/src/routes/layout.css +++ b/src/routes/layout.css @@ -16,4 +16,36 @@ html, body { letter-spacing: 0.2em; color: rgb(107 114 128); font-weight: 700; +} + +/* Page load animations */ +@keyframes fadeInUp { + from { + opacity: 0; + transform: translateY(30px); + } + to { + opacity: 1; + transform: translateY(0); + } +} + +.animate-fade-in-up { + animation: fadeInUp 0.8s ease-out both; +} + +.animate-delay-200 { + animation-delay: 0.2s; +} + +.animate-delay-400 { + animation-delay: 0.4s; +} + +.animate-delay-600 { + animation-delay: 0.6s; +} + +.animate-delay-800 { + animation-delay: 0.8s; } \ No newline at end of file