Skip to content

Commit

Permalink
234569
Browse files Browse the repository at this point in the history
  • Loading branch information
0xjaqbek committed Jul 15, 2024
1 parent 01f9eef commit 9433237
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/IndexPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const INITIAL_MOVE_DISTANCE = 0.01; // Initial distance to move road on each cli
// Define the keyframes for the blinking animation
const blink = keyframes`
0% { background-color: rgba(255, 255, 255, 0.0); }
50% { background-color: rgba(255, 255, 255, 0.3); }
50% { background-color: rgba(255, 255, 255, 0.1); }
100% { background-color: rgba(255, 255, 255, 1); }
`;

Expand All @@ -33,7 +33,7 @@ const CountdownText = styled.div`
z-index: 3;
text-shadow: 22px 22px 10px white;
background-color: rgba(255, 255, 255, 0.5); // Black background with 50% opacity
padding: 150px 60px;
padding: 1500px 600px;
animation: ${blink} 1s infinite; // Add the animation
`;

Expand Down

0 comments on commit 9433237

Please sign in to comment.