I've made a little custom CSS snippet, which reduces the margins of posts, and make more efficient use of the screenspace.
Here's a long "discussion with myself and others, which normally wouldn't be readable any more:
https://poal.co/s/WMDTestSite/135282
And here's the custom CSS I've used to fix that:
/* CSS here */
.pchild {
margin-left: 0px;
}
.c-upvote, .c-downvote, .upvote, .downvote {
width: 12px;
}
.votecomment {
width: 16px;
}
.commentrow.text-post.no-padding.comment {
padding: 0.4em 0 0.4em 0.4em;
}
article.comment:nth-child(n) {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
border: 2px solid #333;
border-right: none;
}
article.comment:first-of-type {
border-radius: 8px;
}
I've made a little custom CSS snippet, which reduces the margins of posts, and make more efficient use of the screenspace.
Here's a long "discussion with myself and others, which normally wouldn't be readable any more:
https://poal.co/s/WMDTestSite/135282
And here's the custom CSS I've used to fix that:
```
/* CSS here */
.pchild {
margin-left: 0px;
}
.c-upvote, .c-downvote, .upvote, .downvote {
width: 12px;
}
.votecomment {
width: 16px;
}
.commentrow.text-post.no-padding.comment {
padding: 0.4em 0 0.4em 0.4em;
}
article.comment:nth-child(n) {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
border: 2px solid #333;
border-right: none;
}
article.comment:first-of-type {
border-radius: 8px;
}
```
(post is archived)