User:Saag/common.css: Difference between revisions

From Deadlock Wiki
Jump to navigation Jump to search
Saag (talk | contribs)
No edit summary
Saag (talk | contribs)
No edit summary
Line 3: Line 3:
}
}


.hover-to-show:hover .hide {
.hover-to-show:hover + .hide {
display: block;
display: block;
position: fixed;
position: fixed;

Revision as of 18:05, 6 September 2024

.hide {
  display: none;
}

.hover-to-show:hover + .hide {
	display: block;
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	width: 600px;
	z-index: 2;
    cursor: pointer; /* Add a pointer on hover */
}