틀:Polarnacht 툴팁/styles.css: 두 판 사이의 차이

편집 요약 없음
편집 요약 없음
9번째 줄: 9번째 줄:
display: none;
display: none;
min-width: 100px;
min-width: 100px;
bottom: 100%;
bottom: -300%;
left: 50%;
left: 50%;
border: 1px solid #565553;
border: 1px solid #565553;

2023년 7월 9일 (일) 09:28 판

.tooltip-test {
	position: relative;
	text-decoration: underline dotted;
	cursor: help;
}
.tooltip-test-text {
	position: absolute;
	z-index: 9999;
	display: none;
	min-width: 100px;
	bottom: -300%;
	left: 50%;
	border: 1px solid #565553;
	background: black;
	padding: 1em;
}
.tooltip-test:hover .tooltip-test-text {
	display: inherit;
}
.tooltip-test-text:hover {
	cursor: default;
}