Jump to content

The wiki is in the process of updating to the latest major game changes. Any contributions are appreciated!
Start here to learn how to edit and join our Discord server to make suggestions.

User:Saag/common.css: Difference between revisions

From The Deadlock Wiki
No edit summary
No edit summary
Line 1: Line 1:
.hide {
.hide {
   display: none;
   display: none;
  opacity: 0;
}
}


.hover-to-show:hover .hide {
.hover-to-show:hover .hide {
display: block;
display: absolute;
opacity: 1;
transition: opacity 0.4s ease-in-out;
}
}

Revision as of 17:47, 6 September 2024

.hide {
  display: none;
}

.hover-to-show:hover .hide {
	display: absolute;
	
}