Automatically hides the sidebar on blaseball.com unless hovered over, giving more room and importance to the games.
Hidden Nav Menu by beefox
Details
Authorbeefox
LicenseNo License
Categoryblaseball.com
Created
Updated
Size638 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 blaseball.com - 12/01/2023, 11:06:49 pm
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Me
==/UserStyle== */
@-moz-document domain("blaseball.com") {
.navigation ul{
position: relative;
left: -25ch;
}
.navigation{
width: 1ch;
background-color: var(--bs-dark);
/* transition-duration: 1s; */
padding-inline: 0.4rem;
}
.navigation:hover{
width: auto;
padding-inline: 2rem;
}
.navigation:hover ul{
left: 0;
}
}