Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Color changes & hover effect in Sign-in button #12

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,18 @@ body{
width:40%;
border-radius: 100px;
font-size: large;
background-color: blue;
color:wheat;
background-color: #30305b;
color:white;
cursor:pointer;
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4); /* More pronounced shadow on hover */
}
.button:hover {
background-color: #7979bf;
color: black;

/*box-shadow: 0 4px 8px rgba(244, 239, 239, 0.2);*/ /* Initial shadow for a 3D effect */
transition: 0.3s ease all;
transform: scale(1.1); /* Scale the image to 110% */
}
.para2{
text-align: right;
Expand Down