틀:와르샤와/styles.css: 두 판 사이의 차이

편집 요약 없음
편집 요약 없음
9번째 줄: 9번째 줄:
.ageofchange {
.ageofchange {
   margin-top: 10px;
   margin-top: 10px;
   line-height: 20px;
   line-height: 40px;
   width: 100%;
   width: 100%;
   animation-name: example;
   animation-name: example;

2023년 4월 23일 (일) 12:32 판

/* The animation code */
@keyframes example {
  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;}
}

/* The element to apply the animation to */
.ageofchange {
  margin-top: 10px;
  line-height: 40px;
  width: 100%;
  animation-name: example;
  font-size: 16pt;
  text-align: center;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}