-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnavbar.css
80 lines (80 loc) · 1.24 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
76
77
78
79
80
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
}
#nav {
display: flex;
width: 100%;
height: 100px;
margin-top: 10px;
justify-content: space-between;
background-color: transparent;
position: fixed;
top: 0px;
}
#menu {
display:grid;
width: 1.6%;
height: 20%;
margin-top: 0.7%;
align-content: space-around;
margin-left: 2%;
background-color: transparent;
}
#menu > div {
height: 1px;
background-color: black;
transition: 0.4s;
}
#one {
width: 90%;
}
#two {
width: 60%;
}
#three {
width: 70%;
}
#menu:hover div {
width: 90%;
}
#logo {
width: 16%;
}
#logo >a> img {
width: 100%;
}
#gap {
width: 40%;
background-color: transparent;
}
a {
text-decoration: none;
font-weight: none;
color: black;
}
#cart {
display: flex;
width: 5%;
height: 35%;
background-color: transparent;
margin-right: 2%;
}
#search {
margin-top: 0.7%;
}
#loghelp {
display: flex;
width: 10%;
background-color: transparent;
justify-content: space-between;
margin-top: 0.7%;
}
#cart >img {
width: 45%;
height: 100%;
background-color: transparent;
}