inspired by Neocities No Followers by thescaryjokes. hide stats and followers/following list in sidebar.
Neocities No Stats by balfiere
Details
Authorbalfiere
LicenseNo License
Categoryneocities.org
Created
Updated
Size986 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Neocities No Stats
@namespace github.com/openstyles/stylus
@version 1.0.0
@description inspired by Neocities No Followers by thescaryjokes. hide stats and followers/following list in sidebar.
@author Me
==/UserStyle== */
@-moz-document url-prefix("https://neocities.org/") {
/*hide stats on top on people's profile, under the title*/
.col-50 .stats {
display: none;
}
/*hide your own stats in the right sidebar on the activity feed page*/
.stats .col-50:nth-child(2) {
display: none;
}
/*when browsing sites, hide their total number of visits*/
.site-stats {
display: none;
}
/* hides the 'new followers' section on people's profiles. i prefer to keep this, but uncomment if you want to hide it
.news-item.follow{
display: none;
} */
/*hide following list*/
.following-list {
display: none;
}
/*hide follower list*/
.follower-list {
display: none;
}
}