We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3abe9de commit f5ba297Copy full SHA for f5ba297
index.html
@@ -105,7 +105,9 @@ <h3>Connect</h3>
105
.typewriter::after {
106
content: '_';
107
color: var(--gold-primary);
108
- animation: blink-caret 0.75s step-end infinite;
+ animation:
109
+ blink-caret 0.75s step-end infinite,
110
+ hide-cursor-0 0s 0.9s forwards;
111
}
112
113
.typewriter-delay-1 {
@@ -151,6 +153,13 @@ <h3>Connect</h3>
151
153
50% { opacity: 1; }
152
154
155
156
+ @keyframes hide-cursor-0 {
157
+ to {
158
+ content: '';
159
+ display: none;
160
+ }
161
162
+
163
@keyframes hide-cursor-1 {
164
to {
165
content: '';
0 commit comments