Skip to content

Instantly share code, notes, and snippets.

@VarunBatraIT
Last active October 31, 2025 08:52
Show Gist options
  • Select an option

  • Save VarunBatraIT/2c85d5b0eb4e3ebd9283f95551d8da9e to your computer and use it in GitHub Desktop.

Select an option

Save VarunBatraIT/2c85d5b0eb4e3ebd9283f95551d8da9e to your computer and use it in GitHub Desktop.
Lichess.org - promote only 15+10 rapid
/* Target the element with data-id="15+10" */
[data-id="15+10"] {
color: black !important; /* Force text color to black */
background-color: yellow !important; /* Optional: make it stand out */
}
/* Make 10+0 and 10+5 blend in completely */
[data-id="10+0"],
[data-id="10+5"] {
color: black !important; /* Text becomes black */
background-color: black !important; /* Background becomes black */
border: 1px solid black !important; /* Border also blacked out */
text-shadow: none !important; /* Remove any glow or contrast */
transition: all 0.3s ease-in-out;
}
/* Just for fun — when hovered, they “reveal” themselves briefly */
[data-id="10+0"]:hover,
[data-id="10+5"]:hover {
color: white !important;
background-color: #222 !important;
border-color: white !important;
transform: rotate(1deg) scale(1.05);
cursor: pointer;
}
coords coord{
font-size: clamp(1rem, 1.2vw, 1.25rem) !important;
padding: 0 0 20% 5% !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment