forked from arghadipmanna101/Flipkart_Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Navbar.css
76 lines (64 loc) · 1.13 KB
/
Navbar.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
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#input_data {
width: 400px;
/* Adjust the width as needed */
}
.nav-item {
transition: background-color 0.5s ease;
}
.nav-link {
text-decoration: none;
color: #000;
display: block;
padding: 20px;
}
.navtab{
margin-left: 10px;
padding-left: 10px;
background-color: #e6eeff;
border-radius: 10px;
}
.navbar-nav{
margin-right: auto;
}
#input_data{
width: 500px;
border: none;
background-color: transparent;
padding: 5px;
}
.nav-item:hover{
background-color: transparent;
transform: none;
border-bottom: none;
}
.nav-item::before:hover{
border: #fff;
transform: none;
background-color: transparent;
}
.nav-item-divider::before {
content: '';
display: inline-block;
width: 1px;
height: 30px;
background-color: #ccc;
margin: 0 10px;
transition: all 0.4s;
}
.nav-item-divider:last-child::before {
display: none;
}
.nav-item:hover .nav-item-divider::before {
background-color: #000;
}
.nav-item-divider::after {
content: '';
display: inline-block;
width: 1px;
height: 30px;
background-color: #ccc;
margin: 0 10px;
}
.nav-item-divider:last-child::after {
display: none;
}