These CSS modifications replace the elo rankings on Chess.com with the word (hidden). For a less stressful chess experience! (and better hallway vision)
Hide ELO Ratings on Chess.com by roninpawn

Details
Authorroninpawn
LicensePublic Domain, cc0
Categorychess.com
Created
Updated
Code size1.3 kB
Code checksum917e10d4
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Hide ELO Ratings on Chess.com
@version 20250321.08.16
@namespace https://userstyles.world/user/Roninpawn
@description These CSS modifications replace the elo rankings on Chess.com with the word (hidden). For a less stressful chess experience! (and better hallway vision)
@author Roninpawn
@license Public Domain, cc0
==/UserStyle== */
@-moz-document url-prefix("https://www.chess.com/") {
/* Hide ELO ratings on Chess.com (v1.0)
-Roninpawn (March, 2025) */
.user-tagline-rating, div [class *= "cc-user-rating"] {
text-indent: -9999px;
line-height: 0;
}
.user-tagline-rating:after, div [class *= "cc-user-rating"]:after {
content: '(hidden)';
text-indent: 0;
display: block;
line-height: initial;
}
.game-start-message-component {
font-size: 0;
line-height: 0;
}
.game-start-message-component a {
line-height: initial;
font-size: small;
}
.game-start-message-component a:after {
font-weight: normal;
content: '(hidden)';
margin: 2px 3px;
}
.game-start-message-component a:first-of-type:after {
content: '(hidden) vs.';
}
.game-start-message-component strong {
font-size: small;
line-height: initial;
}
}