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

Update style.css #8

Open
wants to merge 1 commit into
base: main
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
32 changes: 27 additions & 5 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
body {
background-color: antiquewhite;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
text-align: center;
}
margin: 0;
font-family: Arial, sans-serif;
}

.navbar {
background-color: #161932; /* Navbar background color */
display: flex;
justify-content: center; /* Center align buttons */
padding: 20px; /* Space around the navbar */
}

.nav-button {
background-color: transparent; /* No background for buttons */
color: #565B76; /* Text color */
border: 2px solid #565B76; /* Border color */
border-radius: 20px; /* Rounded corners */
padding: 10px 20px; /* Space inside buttons */
margin: 0 10px; /* Space between buttons */
font-size: 16px; /* Button text size */
cursor: pointer; /* Pointer cursor on hover */
transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover effect */
}

.nav-button:hover {
background-color: #F87070; /* Hover background color */
color: white; /* Change text color on hover */
}