-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstyle.css
28 lines (25 loc) · 896 Bytes
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
body {
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 */
}