hover over a game to focus on it and blur out all others
Game Focus by mynotaurus
Details
Authormynotaurus
LicenseNo License
Categoryblaseball
Created
Updated
Size681 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 Game Focus
@namespace github.com/openstyles/stylus
@version 1.0.1
@description Hover over games to focus on them
@author Myno
==/UserStyle== */
@-moz-document domain("blaseball.com") {
.shared__glass-container {
transition: filter 300ms, transform 300ms;
pointer-events: auto;
}
.playtab__gamelist {
pointer-events: none;
}
.playtab__gamelist .shared__glass-container:hover {
filter: blur(0);
transform: scale(1.1);
}
.playtab__gamelist:hover .shared__glass-container:not(:hover) {
filter: blur(0.3rem) !important;
transform: scale(1);
}
}