Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
neeru24 authored Oct 16, 2024
1 parent f4b2f7e commit e9f0cc0
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions website/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1711,3 +1711,53 @@ body::-webkit-scrollbar-thumb {
background-positon-x: 0px;
}
}

/* General styles for the contribution section */
#contribution {
background-color: #000; /* Black background for the section */
}

/* Styles for the heading */
#contribution h1 {
color: #fff; /* White text color */
transition: color 0.3s ease, transform 0.3s ease; /* Smooth transition for hover effects */
}

/* General styles for the contribution section */
#contribution {
background-color: #000; /* Black background for the section */
}

/* Styles for the heading */
#contribution h1 {
color: #fff; /* White text color */
transition: color 0.3s ease, transform 0.3s ease; /* Smooth transition for hover effects */
}

/* Hover effects for the main heading */
#contribution h1:hover {
color: yellow; /* Change text color to yellow on hover */
transform: scale(1.05); /* Increase size slightly on hover */
}

/* Styles for the "Steps to Contribute" container */
#contribution .flex {
transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth scaling and shadow effect */
}

/* Hover effects for the entire card */
#contribution .flex:hover {
transform: scale(1.02); /* Scale up on hover */
box-shadow: 0 4px 10px rgba(128, 128, 128, 0.5); /* Subtle grey shadow on hover */
}

/* Styles for the step items */
#contribution p {
color: #fff; /* Default text color */
transition: color 0.3s ease; /* Smooth transition for hover effects */
}

/* Hover effects for step items */
#contribution p:hover {
color: yellow; /* Change text color to yellow on hover */
}

0 comments on commit e9f0cc0

Please sign in to comment.