add: css styling
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
.blink-cursor {
|
||||
animation: blink-cursor 1s steps(1) infinite;
|
||||
}
|
||||
|
||||
@keyframes blink-cursor{
|
||||
0%, 50% { opacity: 0.0; } /* invisible 0%..50% */
|
||||
50%, 100% { opacity: 1.0; } /* visible 50%..100% */
|
||||
}
|
||||
Reference in New Issue
Block a user