:와르샤와/styles.css

WARSAW (토론 | 기여)님의 2023년 4월 23일 (일) 14:17 판
/* 테스트에요 여러분 테스트 */
.ageofchange {
  margin-top: 10px;
  line-height: 80px;
  width: 100%;
  animation-name: ageofchange;
  font-size: 24pt;
  font-family: KoPubDotumMedium;
  font-weight: bold;
  text-align: center;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}
@keyframes ageofchange {
  0%   {background-color:#580009; color:#CFA547; left:20px; top:10px;}
  50%  {background-color:#00F1BA; color:#252525; left:20px; top:10px;}
  100% {background-color:#580009; color:#CFA547; left:20px; top:10px;}
}

/* 테스트에요 여러분 테스트 2 */
.animation2 {
  margin-top: 10px;
  line-height: 80px;
  width: 100%;
  overflow: hidden;
  background-color: #88044F;
  animation-name: animation2;
  font-size: 24pt;
  font-weight: bold;
  text-align: center;
  animation-duration: 4s;
  animation-iteration-count: 1
}

h1 {
  font-size: 40px;
  line-height: 1.2;
  margin: 0;
}
.revealUp {
  opacity: 0;
  visibility: hidden;
}

@keyframes animation2 {
  0%   {opacity: 1.0; top:20px;}
  50%  {opacity: 0.5; top:50px;}
  100% {opacity: 0.0; top:80px;}
}