미디어위키:Common.css: 두 판 사이의 차이

S.T.E.L.L.A.-WIKI
편집 요약 없음
편집 요약 없음
13번째 줄: 13번째 줄:
width: fit-content;
width: fit-content;
height: fit-content;
height: fit-content;
border: 1px solid black;
}
}
.spoiler h4 {
.spoiler h4 {
19번째 줄: 18번째 줄:
text-align: center;
text-align: center;
background: yellow;
background: yellow;
border-bottom: 1px solid black;
border: 1px solid black;
padding: 4px 0;
padding: 4px 0;
margin: 0;
margin: 0;
39번째 줄: 38번째 줄:
color: #4a4a4a;
color: #4a4a4a;
background-color: #4a4a4a;
background-color: #4a4a4a;
padding: 0 3px;
padding: 2px 4px;
border-radius: 3px;
border-radius: 3px;
transition: background-color 0.2s, color 0.2s;
transition: background-color 0.2s, color 0.2s;
61번째 줄: 60번째 줄:
.spoiler-text:hover {
.spoiler-text:hover {
color: inherit;
color: inherit;
background-color: #0004;
background-color: #0002;
}
}
.spoiler-text:hover::after {
.spoiler-text:hover::after {
opacity: 0;
opacity: 0;
}
}

2024년 4월 17일 (수) 00:37 판

/* 이 CSS 설정은 모든 스킨에 적용됩니다 */
td {
	position: relative;
}
.mw-collapsible-toggle {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	opacity: 0;
}
.spoiler {
	width: fit-content;
	height: fit-content;
}
.spoiler h4 {
	font-size: 14px;
	text-align: center;
	background: yellow;
	border: 1px solid black;
	padding: 4px 0;
	margin: 0;
}
.spoiler div {
	overflow: hidden;
}
.spoiler .spoiler-img {
	overflow: hidden;
	filter: blur(20px) saturate(.5) contrast(.5) brightness(1.2);
	transition: filter 0.2s;
}
.spoiler .spoiler-img:hover {
	filter: none;
}

.spoiler-text {
	position: relative;
	color: #4a4a4a;
	background-color: #4a4a4a;
	padding: 2px 4px;
	border-radius: 3px;
	transition: background-color 0.2s, color 0.2s;
}
.spoiler-text::after {
	content: "스포일러";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 10px;
	color: yellow;
	white-space: nowrap;
	transition: opacity 0.2s;
	pointer-events: none;
}
.spoiler-text:hover {
	color: inherit;
	background-color: #0002;
}
.spoiler-text:hover::after {
	opacity: 0;
}