메뉴 여닫기
환경 설정 메뉴 여닫기
개인 메뉴 여닫기
로그인하지 않음
지금 편집한다면 당신의 IP 주소가 공개될 수 있습니다.

현재 창팝위키는 베타 오픈입니다. 공지 보기

.ts--imageitem-container {
	position: relative;
	display: flex;
	flex-direction: column;
}

.ts--imageitem-image {
	margin: 0;
	width: 100%;
}

.ts--imageitem-image > img {
	width: 100%;
}

.ts--imageitem-imagelink {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}

.ts--imageitem-imagelink > a {
	display: block;
	width: 100%;
	height: 100%;
	font-size: 0;
	background: linear-gradient( to bottom, rgba(0,0,0,0.4) 0%, transparent 40%, transparent);
	opacity: 0;
	transition: opacity .135s cubic-bezier(0,0,.2,1);
}

.ts--imageitem-imagelink > a:hover {
	opacity: 1;
}

.ts--imageitem-imagelink > a:active {
	box-shadow: 0 0 0 2px var(--color-progressive);
	transition-duration: 0s;
}

.ts--imageitem-blur-background {
	position: absolute;
	width: 100%;
	z-index: -1;
}

.ts--imageitem-blur-background > img {
	filter: blur(2em) brightness(0.6) saturate(3);
	width: 200%;
	transform: translateX(-25%) translateY(-50%);
}

.ts--imageitem-caption {
	display: flex;
	width: 100%;
	justify-content: center;
	overflow: hidden;
	position: relative;
}

.ts--imageitem-caption a {
	color: white;
	padding: 6px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}