Another blogging tool
-
https://nikki.top/
-
This one is a very indie project thats super reminiscent of status.cafe , but with much longer post and a few more features.
It allows for image embeds using [img] url [/img] and some markdown
I've decided to make a post about this one because there is not very many tooltips to explain things
-
Under the settings tab there is a custom css area
This effects the iframe you can embed on your website
(You can find the embed code here https://nikki.top/tut/neo )
-
Here is the the css that I'm PRETTY SURE targets all elements possible
/* Body */
body {
}
/* All divs */
div {
}
/* Specific post container */
div.posts {
}
/* Elements inside posts */
div.posts h2 {
}
div.posts h2.title {
}
div.posts div.content {
}
div.posts div.content img {
}
div.posts div.content img.img {
}
div.posts div.content br {
}
div.posts small {
}
div.posts small.date {
}
/* Horizontal rules between posts */
hr {
}
/* General text elements */
h2 {
}
h2.title {
}
div.content {
}
small {
}
small.date {
}
/* Images */
img {
}
img.img {
}
/* Line breaks */
br {
}
/* Wildcard inside posts (any element) */
div.posts * {
}
/* Direct children inside posts */
div.posts > h2 {
}
div.posts > div.content {
}
div.posts > small {
}
/* Direct children of content div */
div.posts div.content > img {
}
div.posts div.content > br {
}
/* Nested selectors if needed for styling specifics */
div.posts div.content img + br {
}
div.posts div.content br + img {
}
-
To see an example of a fully styled version see mine here:












