data endpoint for entity 90008 (aka. a website)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: move main page styling to its own css file

dusk 967d6362 631a5c8d

+26 -26
+1 -26
src/routes/(site)/+page.svelte
··· 4 4 import Window from '$components/window.svelte'; 5 5 import { renderDate, renderRelativeDate } from '$lib/dateFmt'; 6 6 import Tooltip from '$components/tooltip.svelte'; 7 + import '$styles/main.css'; 7 8 8 9 interface Props { 9 10 // eslint-disable-next-line @typescript-eslint/no-explicit-any ··· 460 461 </Window> 461 462 </div> 462 463 </div> 463 - 464 - <style lang="postcss"> 465 - .entry { 466 - @apply bg-ralsei-green-dark/70 border-ralsei-green-light/30 border-x-[4px] border-y-[5px]; 467 - border-style: ridge; 468 - } 469 - 470 - details { 471 - @apply leading-none mt-2; 472 - summary { 473 - @apply text-shadow-pink text-ralsei-pink-neon; 474 - } 475 - summary::marker { 476 - content: '(+) '; 477 - } 478 - } 479 - details[open] summary::marker { 480 - content: '(*) '; 481 - } 482 - 483 - .donate ul { 484 - li span { 485 - @apply font-monospace overflow-hidden text-ellipsis text-nowrap; 486 - } 487 - } 488 - </style>
+25
src/styles/main.css
··· 1 + @import 'app.css'; 2 + 3 + .entry { 4 + @apply bg-ralsei-green-dark/70 border-ralsei-green-light/30 border-x-[4px] border-y-[5px]; 5 + border-style: ridge; 6 + } 7 + 8 + details { 9 + @apply leading-none mt-2; 10 + summary { 11 + @apply text-shadow-pink text-ralsei-pink-neon; 12 + } 13 + summary::marker { 14 + content: '(+) '; 15 + } 16 + } 17 + details[open] summary::marker { 18 + content: '(*) '; 19 + } 20 + 21 + .donate ul { 22 + li span { 23 + @apply font-monospace overflow-hidden text-ellipsis text-nowrap; 24 + } 25 + }