- source code activity on github
- some undocumented neocities mechanics by suboptimalism
hiding ui elements with css
view and follower counts have been stressing me out lately, and i had more fun on the global activity page when it was just updates without comments, so i’ve been using custom css (in firefox) to hide some things.
userContent.css
@-moz-document domain(neocities.org) {
/* limit height of new followers section to two lines */
.col-66 .follow .content {
max-height: 3.1rem;
overflow-Y: auto;
}
/* hide views, follower count, traffic */
.news-site-info .stats .col-50:nth-child(2),
.profile-info > .stats,
.site-info > .site-stats,
.col-33 .stats a {
display: none;
}
}
@-moz-document url-prefix(https://neocities.org/activity) {
/* hide text updates on the global activity feed */
.news-item.comment {
display: none;
}
}