<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* CSS Document */
/* 可自動持續上下移動的動畫 */
@keyframes myAnimation
{
    0% { margin-top: 0px;}
  30% { margin-top: 30px;  }
  
}

@-webkit-keyframes myAnimation
{
    0% { margin-top: 0px; }
  30% { margin-top: 30px;  }
 
}

.title{
  width: 100%;
  height: 100%;
  animation: myAnimation 3s ease 0s infinite alternate;
  -webkit-animation: myAnimation 5s ease 0s infinite alternate;
}


</pre></body></html>