add: deploy script

This commit is contained in:
odweta
2026-09-12 14:52:56 +02:00
parent b9c1cea0cf
commit c3b432f7b8
7 changed files with 15 additions and 0 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% */
}