Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
viz2289132 authored May 7, 2024
1 parent 1dcc42e commit 181aa52
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions css/solution.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
.gradient-background {
background: linear-gradient(300deg, #00bfff, #ff4c68, #ef8172);
background-size: 180% 180%;
animation: gradient-animation 18s ease infinite;
}

@keyframes gradient-animation {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}

.icon-square {
width: 3rem;
height: 3rem;
border-radius: 0.75rem;
}

.profile-img {
border-radius: 50%;
height: 100px;
}

0 comments on commit 181aa52

Please sign in to comment.