add: css styling

This commit is contained in:
odweta
2026-09-12 14:22:10 +02:00
parent 9e51a5fe29
commit e382256330
5 changed files with 175 additions and 16 deletions
+8
View File
@@ -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% */
}