my website, hosted on wisp.place
0
fork

Configure Feed

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

at 4a8d3f176971d2b545dfb39e74d4eaffc75d4438 36 lines 676 B view raw
1h1, 2h2, 3h3, 4h4, 5h5, 6h6 { 7 font-family: 8 ui-serif, "Georgia", "Cambria", "Times New Roman", "Times", serif; 9} 10 11pre { 12 /* shiki changes the background color, so i have to add this to separate the code from the rest of the text */ 13 border: 1px solid var(--sc-prose-bd); 14} 15 16article { 17 margin-block: 1rem; 18 padding-inline: 1rem; 19 background-color: var(--sc-prose-bg); 20 border: 1px solid var(--sc-prose-bd); 21} 22 23.floating-image { 24 float: right; 25 margin-inline-start: 1rem; 26 margin-block: 1rem; 27 height: 128px; 28} 29 30@media (prefers-color-scheme: dark) { 31 .astro-code, 32 .astro-code span { 33 color: var(--shiki-dark) !important; 34 background-color: var(--shiki-dark-bg) !important; 35 } 36}