Skip to content
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
26 changes: 25 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,28 @@ body {
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
text-align: center;
}
}

.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 */
}