Skip to content

Commit

Permalink
added workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Gyanthakur committed Oct 8, 2024
2 parents 5c61a86 + e7762a5 commit 50fe940
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/greetings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- '**'
issues:
types: [opened]
types: [opened] # Trigger on issue opened event
pull_request:
branches:
- '**'
Expand Down
2 changes: 1 addition & 1 deletion about-us.html
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ <h2 class="section-title">How You Can Contribute</h2>
fork.
</li>
<li>
<i class="fas fa-pull-request"></i> Create a Pull Request and wait
<i class="fa-solid fa-code-pull-request"></i> Create a Pull Request and wait
for it to be merged!
</li>
</ol>
Expand Down
22 changes: 19 additions & 3 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -501,6 +501,7 @@ footer {
.about-content {
font-size: 16px;
color: var(--color-white); /* Use white for better readability */
margin-bottom: 10px;
}

.contribution-steps {
Expand All @@ -512,12 +513,27 @@ footer {
padding: 10px;
font-size: 16px;
color: var(--color-white); /* Consistent text color */
transition: background-color 0.3s ease;
transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
border-radius: 4px; /* Rounded corners for list items */
margin-bottom: 10px; /* Space between list items */
}

.contribution-steps li i {
margin-right: 10px;
color: var(--color-profile-border); /* Icon color */
}

.contribution-steps li:hover {
background-color: var(--color-green); /* Highlight on hover */
color: black; /* Change text color to black on hover */
background-color: #e35205; /* Highlight on hover */
color: white; /* Change text color to black on hover */
transform: scale(1.05); /* Slightly enlarge the item */
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Add a shadow for depth */
cursor: pointer;
}

.contribution-steps li:hover i {
color: white; /* Change icon color to black on hover */

}

/* Footer for About Page */
Expand Down

0 comments on commit 50fe940

Please sign in to comment.