틀:CRT/styles.css: 두 판 사이의 차이

편집 요약 없음
편집 요약 없음
1번째 줄: 1번째 줄:
.theme-television {
.theme-television {
    width: 100%;
width: 100%;
    height: 100%;
height: 100%;
    position: absolute;
background: repeating-linear-gradient(to bottom,rgba(0,0,0,0.15)0px,rgba(0,0,0,0.15)2px,transparent 2px,transparent 5px);
 
animation: crt-scan 6s linear infinite;
    background: repeating-linear-gradient(
z-index: 9999;
        to bottom,
top: 0;
        rgba(0,0,0,0.35) 0px,
left: 0;
        rgba(0,0,0,0.35) 2px,
position: fixed;
        transparent 2px,
        transparent 4px
    );
 
    animation: crt-scan 6s linear infinite;
    z-index: 5;
}
}



2026년 2월 19일 (목) 02:04 판

.theme-television {
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(to bottom,rgba(0,0,0,0.15)0px,rgba(0,0,0,0.15)2px,transparent 2px,transparent 5px);
	animation: crt-scan 6s linear infinite;
	z-index: 9999;
	top: 0;
	left: 0;
	position: fixed;
}

/* 줄이 아래로 흐르는 효과 */
@keyframes crt-scan {
    from {
        transform: translateY(-4px);
    }
    to {
        transform: translateY(4px);
    }
}