-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNavbar.css
More file actions
59 lines (51 loc) · 877 Bytes
/
Navbar.css
File metadata and controls
59 lines (51 loc) · 877 Bytes
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #2f4f2f;
padding: 15px 30px;
}
.nav-left {
display: flex;
align-items: center;
gap: 20px;
}
.nav-item {
text-decoration: none;
color: white;
font-size: 18px;
padding: 10px 15px;
transition: background 0.3s ease-in-out;
}
.sell-button {
background-color: #3cb371;
border: none;
padding: 8px 15px;
border-radius: 5px;
cursor: pointer;
color: white;
}
.sell-button:hover {
background-color: #2e8b57;
}
.nav-right {
display: flex;
align-items: center;
gap: 15px;
}
.username {
color: white;
font-size: 18px;
font-weight: bold;
}
.logout-button {
background-color: #ff6347;
border: none;
padding: 8px 12px;
border-radius: 5px;
cursor: pointer;
color: white;
}
.logout-button:hover {
background-color: #d9534f;
}