ReedyBear's Blog

Bearblog: Styling individual posts (re, ava)

my feelings about markdown | ava's blog

Whenever I edit [site theme], I have to keep in mind though that it will be applied to old posts too. I cannot just have a design for one post only with that. If I want that, I need to write specific stuff into that post; and I usually want or need HTML for that

While the site-wide themes will affect all your old posts, you can also add styling to a specific post. I tested with an external stylesheet and it worked.

And this page is modified with an inline <style> block.

Inline Styles Code

<style>
:root {
--link-color: lightblue;
--underline_color: darkblue;
--main-color: blue;
}
body {
    background: gray;
}
main > h1 {
    border-bottom: 1px solid purple;
}
</style>

Other Ideas

These ideas could be better explained, but i'm tired

#bearblog #reply