Difference between revisions of "User:Foxbite/common.css"

From Team Fortress Wiki
Jump to: navigation, search
m (filter's scope fixd)
m (testing (is dumb))
Line 14: Line 14:
 
-o-filter: grayscale(0);
 
-o-filter: grayscale(0);
 
-ms-filter: grayscale(0);
 
-ms-filter: grayscale(0);
 +
}
 +
 +
 +
/* trollage */
 +
 +
::-webkit-scrollbar-thumb:hover {
 +
background-color:#FFD580;
 +
}
 +
::-webkit-scrollbar-thumb:active {
 +
background-color:#F3A957;
 
}
 
}

Revision as of 21:59, 18 January 2022

/* hmmm am I doing this right */
.navimg {
	filter: grayscale(0.8);
	-webkit-filter: grayscale(0.8);
	-moz-filter: grayscale(0.8);
	-o-filter: grayscale(0.8);
	-ms-filter: grayscale(0.8);
/*	transition: all 0.23s ease; */
}
.navimg:hover {
	filter: grayscale(0);
	-webkit-filter: grayscale(0);
	-moz-filter: grayscale(0);
	-o-filter: grayscale(0);
	-ms-filter: grayscale(0);
}


/* trollage */

::-webkit-scrollbar-thumb:hover {
	background-color:#FFD580;
}
::-webkit-scrollbar-thumb:active {
	background-color:#F3A957;
}