Skip to content

Commit

Permalink
feat: make it glow
Browse files Browse the repository at this point in the history
  • Loading branch information
Plopix committed Jan 24, 2025
1 parent 4c41ef8 commit 30b6b72
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion components/cli/docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,23 @@
color: #fff;
padding: 100px;
border-radius: 8px;
box-shadow: 0 0 20px rgb(255, 191, 74);
box-shadow: 0 0 10px rgba(255, 191, 74, 0.6),
0 0 20px rgba(255, 191, 74, 0.4),
0 0 30px rgba(255, 191, 74, 0.3);
animation: glow 1.5s infinite;
}

@keyframes glow {
0%, 100% {
box-shadow: 0 0 10px rgba(255, 191, 74, 0.6),
0 0 20px rgba(255, 191, 74, 0.4),
0 0 30px rgba(255, 191, 74, 0.3);
}
50% {
box-shadow: 0 0 20px rgba(255, 191, 74, 0.8),
0 0 30px rgba(255, 191, 74, 0.6),
0 0 40px rgba(255, 191, 74, 0.5);
}
}

.code-block {
Expand Down

0 comments on commit 30b6b72

Please sign in to comment.