-
Notifications
You must be signed in to change notification settings - Fork 0
/
navbar.css
176 lines (142 loc) · 2.76 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/* * {
margin: 0;
padding: 0;
} */
#navBar {
width: 82%;
margin: auto;
}
#navBar+hr {
width: 100%
}
#topLine {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
#topLine>div:first-child {
display: flex;
justify-content: space-between;
width: 200px;
flex-wrap: wrap;
}
#topLine>div:last-child {
display: flex;
justify-content: space-between;
width: 480px;
flex-wrap: wrap;
}
#topLine>div:first-child>a {
text-decoration: none;
color: black;
padding: 15px 10px;
font-family: Futura-Medium, Century Gothic, Gill Sans, Helvetica, Arial, sans-serif;
font-size: 13px;
letter-spacing: .4px;
}
#topLine>div:last-child>a {
text-decoration: none;
color: black;
font-size: 11px;
color: #757575;
text-decoration: none;
letter-spacing: .8px;
font-family: Arial, Helvetica, sans-serif;
padding: 23px 0px 0px 0px;
font-weight: bold;
}
#topLine>div:first-child>a:hover {
background-color: #F2F2F2;
}
#topLine>div:last-child>a:hover {
color: black;
}
#Logo {
width: 100%;
display: flex;
justify-content: center;
margin-top: 50px;
}
#Logo>a>img {
width: 293px;
height: 35px;
}
#cart {
display: flex;
justify-content: flex-end;
position: relative;
bottom: 25px;
}
#cart>a {
font-family: Futura-Medium, Century Gothic, Gill Sans, Helvetica, Arial, sans-serif;
font-size: 14px;
letter-spacing: .4px;
text-decoration: none;
color: black
}
span {
font-size: 18px
}
#primaryNav {
width: 100%;
display: flex;
justify-content: space-between;
padding: 15px 0px;
align-items: center;
flex-wrap: wrap;
}
#primaryNav>div:first-child {
display: flex;
width: 700px;
justify-content: space-between;
flex-wrap: wrap;
}
#primaryNav>div>a {
text-decoration: none;
font-family: Futura-Medium, Century Gothic, Gill Sans, Helvetica, Arial, sans-serif;
font-size: 13px;
color: #757575;
letter-spacing: .4px;
padding: 0 5px;
}
#searchBar {
width: 250px;
padding: 5px 10px;
border: 1px solid gray;
}
#primaryNav>div>a:hover {
color: black;
}
hr {
border: 1px thin
}
@media all and (min-width:550px) and (max-width:850px) {
#navBar {
width: 100%;
}
#searchBar {
width: 200px;
padding: 5px 8px;
}
}
@media all and (min-width:100px) and (max-width:549px) {
#navBar {
width: 100%;
}
#cart {
display: flex;
justify-content: flex-end;
position: relative;
bottom: -10px;
}
#searchBar {
width: 100px;
padding: 5px 8px;
}
}
@media all and (max-width:320px) {
#Logo>a>img {
width: 200px;
height: 35px;
}
}