Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
anaelle1531 authored Feb 1, 2025
1 parent 5e89a80 commit c598db4
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -156,3 +156,22 @@ section {
border-radius: 10px;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

#scrollToTop {
position: fixed;
bottom: 20px;
right: 20px;
background-color: rgb(144, 54, 54);
color: white;
border: none;
padding: 10px 15px;
border-radius: 50%;
cursor: pointer;
font-size: 20px;
transition: background 0.3s ease;
display: none;
}

#scrollToTop:hover {
background-color: rgb(255, 153, 102);
}

0 comments on commit c598db4

Please sign in to comment.