사용자:기나ㅏㄴ/style.css

위키백과, 우리 모두의 백과사전.

참고: 설정을 저장한 후에 바뀐 점을 확인하기 위해서는 브라우저의 캐시를 새로 고쳐야 합니다. 구글 크롬, 파이어폭스, 마이크로소프트 엣지, 사파리: ⇧ Shift 키를 누른 채 "새로 고침" 버튼을 클릭하십시오. 더 자세한 정보를 보려면 위키백과:캐시 무시하기 항목을 참고하십시오.

typewriter {  
	padding: 0;
	width: 100%;
	float: left;
	text-align: left;
}
.typewriter div {
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: .15em solid #2a4b8d; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
 /* margin: 0 auto;  Gives that scrolling effect as the typing happens */
  animation: 
    typing 3.5s steps(40, end),
    blink-caret .75s step-end infinite;
  border-bottom: 0;
  font-size: 20px;
}
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #2a4b8d; }
}