Skip to content

Commit

Permalink
Update .card, .card-large on style-weatherNode.css.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrehlb committed Jan 10, 2024
1 parent c63057f commit 37437a2
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions weather-node/public/css/style-weatherNode.css
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,18 @@ body {
}

@keyframes backgroundWave {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
0% {
background-position: 0% 50%;
background-color: var(--light-skyblue);
}
50% {
background-position: 100% 50%;
background-color: var(--celestial-blue);
}
100% {
background-position: 0% 50%;
background-color: var(--alice-blue);
}
}

@media (max-width: 768px) {
Expand Down

0 comments on commit 37437a2

Please sign in to comment.