Skip to content

Commit

Permalink
Add animation to the items of the section 3
Browse files Browse the repository at this point in the history
  • Loading branch information
getimad committed Feb 27, 2024
1 parent 1ad2f3d commit e4623a9
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ <h1 class="title-4xl text-center">Supercharge your workflow</h1>
viewBox="0 0 24 24"
stroke-width="1.2"
stroke="currentColor"
class="w-24 h-24 text-primary"
class="w-24 h-24 text-primary animate-bounce"
>
<path
stroke-linecap="round"
Expand All @@ -149,7 +149,7 @@ <h3 class="title-xl text-center">Create Blacklists</h3>
viewBox="0 0 24 24"
stroke-width="1.2"
stroke="currentColor"
class="w-24 h-24 text-primary"
class="w-24 h-24 text-primary animate-bounce"
>
<path
stroke-linecap="round"
Expand All @@ -169,7 +169,7 @@ <h3 class="title-xl text-center">Plain Text Snippets</h3>
viewBox="0 0 24 24"
stroke-width="1.2"
stroke="currentColor"
class="w-24 h-24 text-primary"
class="w-24 h-24 text-primary animate-bounce"
>
<path
stroke-linecap="round"
Expand Down
31 changes: 31 additions & 0 deletions src/output.css
Original file line number Diff line number Diff line change
Expand Up @@ -693,6 +693,37 @@ video {
animation: bounce 1s infinite;
}

@keyframes pulse{
50%{
opacity: .5;
}
}

.animate-pulse{
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes ping{
75%, 100%{
transform: scale(2);
opacity: 0;
}
}

.animate-ping{
animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes spin{
to{
transform: rotate(360deg);
}
}

.animate-spin{
animation: spin 1s linear infinite;
}

.grid-cols-1{
grid-template-columns: repeat(1, minmax(0, 1fr));
}
Expand Down

0 comments on commit e4623a9

Please sign in to comment.