šŸ’¾ Archived View for bad-gateway.smol.pub ā€ŗ 220126 captured on 2022-03-01 at 15:09:01. Gemini links have been rewritten to link to archived content

View Raw

More Information

-=-=-=-=-=-=-

2022-01-26: Org like CSS

I was Googling the *Rekka Bellum* (who wrote a diary about sailing from Japan to Canada on a boat called *Pino*) and I saw a cute little thing on their webpage where links are stylizedā€¦

{ like this }

Well thats cool! How do I do that then there has to be a better way than manually inserting of them. So I googled and learned a bit of CSS. I can make things look a bit like Org mode now even when it really isnā€™t. Thatā€™s cool!

a::before { content: "怚"; }
a::after { content:  "怛"; }
h1::before { content: "ļ¹” "; }
h2::before { content: "ļ¹”ļ¹” "; }
h3::before { content: "ļ¹” ļ¹” ļ¹” "; }
li::before { content: "āƒ "; }

Okay the `li` one isnā€™t working yet but I learned something new. Yay CSS!