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

fix: fixed the about us page cards dark mode #663

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 2 additions & 0 deletions aboutus.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@
text-align: center;
}



.feature:hover {
transform: translateX(-5px);
box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
Expand Down
5 changes: 4 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,10 @@ nav ul li.login:hover {
color: #ccc;
}
.dark-mode .feature p {
color: #000; /* Set paragraph color to black */
color: whitesmoke; /* Set paragraph color to black */
}
.dark-mode .feature{
background: #111111;
}

.col-1 h3 {
Expand Down
Loading