Skip to content

Commit 0a0c8c1

Browse files
committed
Remove fadeIn animations and static cursor from terminal typewriter effect
1 parent 8f3b8a1 commit 0a0c8c1

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

assets/css/style.scss

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,6 @@ p {
325325
-webkit-background-clip: text;
326326
-webkit-text-fill-color: transparent;
327327
background-clip: text;
328-
animation: fadeInUp 1s 0.1s backwards;
329328
line-height: 1.1;
330329
}
331330

@@ -335,7 +334,6 @@ p {
335334
color: var(--text-primary);
336335
font-weight: 500;
337336
min-height: 2.5rem;
338-
animation: fadeInUp 1s 0.3s backwards;
339337
}
340338

341339
.hero-description {
@@ -344,18 +342,15 @@ p {
344342
font-size: 1.15rem;
345343
color: var(--text-secondary);
346344
line-height: 1.8;
347-
animation: fadeInUp 1s 0.5s backwards;
348345
}
349346

350347
.hero-buttons {
351348
display: flex;
352349
gap: 15px;
353350
flex-wrap: wrap;
354-
animation: fadeInUp 1s 0.7s backwards;
355351
}
356352

357353
.hero-image {
358-
animation: fadeInUp 1s 0.5s backwards;
359354
}
360355

361356
.profile-image-wrapper {

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<div class="hero-text">
1010
<h1 class="hero-title" id="terminal-name">{{ site.data.profile.name }}</h1>
1111
<h2 class="hero-subtitle" id="typewriter">{{ site.data.profile.headline }}</h2>
12-
<p class="hero-description" id="terminal-bio">{{ site.data.profile.bio }}<span class="terminal-cursor">_</span></p>
12+
<p class="hero-description" id="terminal-bio">{{ site.data.profile.bio }}</p>
1313
<div class="hero-buttons" id="hero-buttons">
1414
<a href="{{ site.data.profile.contact.github }}" class="btn btn-primary github-btn" target="_blank">
1515
<svg viewBox="0 0 24 24" width="20" height="20" fill="currentColor" style="margin-right: 8px;">

0 commit comments

Comments
 (0)