Skip to content

Commit

Permalink
linter error fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Alibaba2023 committed Feb 7, 2024
1 parent 4b31ec6 commit 6ac3a0e
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 31 deletions.
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ <h2 class="headline-support">I'm a Software Developer</h2>
</div>
<ul class="flex social-media-list social-list">
<li>
<a href="https://github.com/Alibaba2023" target="_blank">
<a href="https://github.com/Alibaba2023" target="_blank" rel="noopener">
<svg
class="hero-icons"
width="18"
Expand All @@ -68,7 +68,7 @@ <h2 class="headline-support">I'm a Software Developer</h2>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/ali-baba-hussaini-630607267" target="_blank">
<a href="https://www.linkedin.com/in/ali-baba-hussaini-630607267" target="_blank" rel="noopener">
<svg
class="hero-icons"
width="20"
Expand Down Expand Up @@ -104,7 +104,7 @@ <h2 class="headline-support">I'm a Software Developer</h2>
</a>
</li>
<li>
<a href="https://twitter.com/AliBabaHu2023" target="_blank">
<a href="https://twitter.com/AliBabaHu2023" target="_blank" rel="noopener">
<svg
class="hero-icons"
width="20"
Expand Down Expand Up @@ -148,7 +148,7 @@ <h2 class="heading-about-me">About me</h2>
<p class="about-me-description description-text">
Greetings! I specialize in software development and possess the skills to assist you in crafting a remarkable product, feature, or website. Take a glance at my portfolio and explore my diverse experience. If my work resonates with your vision and you have a coding project in mind, feel free to reach out – I'm here to bring your ideas to life!
</p>
<a href="https://docs.google.com/document/d/167cpX08X8uCl3-AGUJL3m-MilgC7B6LcJKWBxEMWFGY/edit?usp=sharing" class="btn btn-inline-block" target="_blank">
<a href="https://docs.google.com/document/d/167cpX08X8uCl3-AGUJL3m-MilgC7B6LcJKWBxEMWFGY/edit?usp=sharing" class="btn btn-inline-block" target="_blank" rel="noopener">
<p>Get my resume</p>
</a>
</div>
Expand Down
54 changes: 27 additions & 27 deletions navbar-logo-animation.css
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
:root {
--orange: #ff6b00;
--orange: #ff6b00;
}

.logo-box {
animation: rotateLogo 1.5s ease-in;
animation-delay: 0.5s;
padding: 0.5rem 0 0.4rem 0;
}

@keyframes rotateLogo {
0% {
transform: rotate(-180deg);
border-bottom: 1px solid var(--orange);
}

.logo-box {
animation: rotateLogo 1.5s ease-in;
animation-delay: 0.5s;
padding: 0.5rem 0 0.4rem 0;

25% {
border-bottom: 3px solid var(--orange);
}

@keyframes rotateLogo {
0% {
transform: rotate(-180deg);
border-bottom: 1px solid var(--orange);
}

25% {
border-bottom: 3px solid var(--orange);
}

50% {
transform: rotate(360deg) scale(1.2);
box-shadow: var(--orange) 2px 2px 20px 1px;
}

100% {
transform: scale(1.1);
box-shadow: var(--orange) 2px 2px 20px 1px;
}
}

50% {
transform: rotate(360deg) scale(1.2);
box-shadow: var(--orange) 2px 2px 20px 1px;
}

100% {
transform: scale(1.1);
box-shadow: var(--orange) 2px 2px 20px 1px;
}
}

0 comments on commit 6ac3a0e

Please sign in to comment.