Thành viên:NguoiDungKhongDinhDanh/Thư viện ảnh/styles.css

Bách khoa toàn thư mở Wikipedia
/* Main classes */
.text {
	font-family: 'Roboto', 'Helvetica', sans-serif;
	font-size: 1.5em;
	color: #FFFFFF;
}
.headers {
	display: block;
	text-align: center;
	font-weight: bold;
}

/* Overlay and content */
#overlay {
	position: fixed;
	top: -50vw;
	left: -50vw;
	width: 200vw;
	height: 200vh;
	z-index: -100;
}
#main {
	z-index: 1000;
}

/* Intro */
#intro #p {
	z-index: 2000;
    animation: hide 1s;
    animation-delay: 10s;
    animation-fill-mode: both;
}
#intro #h {
	z-index: 3000;
    animation: show 1s;
    animation-delay: 10s;
    animation-fill-mode: both;
}

/* Animation */
@keyframes hide {
	from {
		visibility: visible;
    	opacity: 1;
	}
	to {
		visibility: hidden;
    	opacity: 0;
	}
}
@keyframes show {
	from {
		visibility: hidden;
    	opacity: 0;
	}
	to {
		visibility: visible;
    	opacity: 1;
	}
}