Skip to content

Commit

Permalink
index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
MrTusarRX authored Jun 27, 2024
1 parent ffaa6dd commit 1dded31
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,25 @@
padding: 10px;
background-color: #f1f1f1;
color: #555;
}
.Text {
display: inline-block;
animation: scrollText 10s linear infinite;
}

@keyframes scrollText {
0% {
transform: translateX(200%); /* Start outside from the right */
}
50% {
transform: translateX(0); /* End at the left side */
}
50.1% {
transform: translateX(0%); /* Jump back to start outside from the left */
}
100% {
transform: translateX(200%); /* End at the right side */
}
}
.spinner {
border: 4px solid rgba(0, 0, 0, 0.1);
Expand Down

0 comments on commit 1dded31

Please sign in to comment.