Add new homepage: top animation and first block

This commit is contained in:
Daniele Tonon
2024-04-05 13:34:24 +02:00
parent 1af2550e9f
commit bf2ca24a41
26 changed files with 504 additions and 290 deletions

View File

@@ -24,4 +24,16 @@
margin: 1cm 3cm;
}
}
@keyframes blink {
0% { opacity: 1; }
50% { opacity: 0; }
100% { opacity: 1; }
}
/* Apply the animation to the cursor */
.typewriter-cursor {
animation: blink 1s infinite;
color: rgb(222, 222, 222);
}
}