Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
Atia-Farha authored Nov 21, 2024
1 parent 69d760c commit 7e74d12
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions src/css/style.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
font-family: Arial, sans-serif;
}

/* Overall body styling */
Expand All @@ -12,7 +14,6 @@ body {
justify-content: space-between;
align-items: center;
text-align: center;
font-family: Arial, sans-serif;
background-color: rgb(25, 25, 25);
}

Expand All @@ -22,7 +23,7 @@ body {
flex-direction: column;
justify-content: center;
align-items: center;
margin: 3em 1em 2em 1em;
margin: 3.5em 1em 2em 1em;
}

/* Styling for the stopwatch circle */
Expand All @@ -39,7 +40,7 @@ body {
text-align: center;
margin-bottom: 20px;
background-color: rgb(25, 25, 25);
box-shadow: 0 0 90px rgba(146, 0, 225, 0.85);
box-shadow: 0 0 80px rgba(146, 0, 225, 0.85);
}

/* Styling for the time digits */
Expand All @@ -56,14 +57,16 @@ body {
/* Keyframes for the box shadow animation */
@keyframes boxShadowAnimation {
0% {
box-shadow: 0 0 90px rgba(146, 0, 225, 0.85);
box-shadow: 0 0 80px rgba(146, 0, 225, 0.85);
}

50% {
box-shadow: 0 0 15px rgba(146, 0, 225, 0.85);
box-shadow: 0 0 15px rgba(146, 0, 225, 0.85);
}

100% {
box-shadow: 0 0 90px rgba(146, 0, 225, 0.85);
}
box-shadow: 0 0 80px rgba(146, 0, 225, 0.85);
}
}

/* Styling for horizontal lines */
Expand Down

0 comments on commit 7e74d12

Please sign in to comment.