Skip to content

Commit

Permalink
Update style.css leadership background color
Browse files Browse the repository at this point in the history
  • Loading branch information
AadityaV314 authored Oct 30, 2024
1 parent 7eeded1 commit 1e1f2cc
Showing 1 changed file with 33 additions and 1 deletion.
34 changes: 33 additions & 1 deletion leadership/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,13 @@
}
}
body{
background-color: lightblue;
animation-name: body;
animation-duration: 3s;
animation-delay: 1s;
animation-iteration-count: infinite;
animation-direction: normal;
animation-timing-function: ease;
animation-fill-mode: both;
}
#pmain{
text-align: center;
Expand Down Expand Up @@ -76,4 +82,30 @@
}

}
@keyframes body {
0% {
background-color: red;
}

40% {
background-color: orange;
}

45% {
background-color: yellow;
}

50% {
background-color: yellowgreen;
}

55% {
green
}

100% {
background-color: #00CCFF;
}
}
}

0 comments on commit 1e1f2cc

Please sign in to comment.