:제이위키/대문 애니메이션/styles.css

Hello777 (토론 | 기여)님의 2023년 4월 23일 (일) 17:30 판 (WARSAW님이 틀:제이위키 대문/styles.css 문서를 넘겨주기를 만들지 않고 틀:제이위키/대문 애니메이션/styles.css 문서로 이동했습니다)
.animation2 {
  margin-top: 10px;
  height: 100px;
  width: 100%;
  border: 1px solid #FB0055;
  overflow: hidden;
  font-size: 24pt;
  text-align: center;
  width: 100%;
}
.text-animation {
  margin-top: 35px;
  height: auto;
  animation-name: text-animation;
  animation-duration: 1s;
  animation-iteration-count: 1;
}
@keyframes text-animation {
  from    {
		opacity: 0;
		transform: translateY(50px);
	}

  to {
		opacity: 1;
		transform: translateY(0px);
	}
}