277 views
1.btn { 2 align-items: center; 3 background: #93e2cb; 4 border-radius: 4px; 5 display: flex; 6 height: 80px; 7 justify-content: center; 8 padding: 1rem; 9 width: 180px; 10} 11 12#line { 13 animation: linePencil .8s infinite linear; 14} 15 16@keyframes linePencil { 17 0% { 18 transform: translateY(0); 19 } 20 21 100% { 22 transform: translateY(-150px); 23 } 24}
JkHuger
JkHuger
MIT License