-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavbar.txt
214 lines (181 loc) · 5.48 KB
/
navbar.txt
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
html:
with searchbar:
<nav class="navbar">
<div class="navdiv">
<div class="logo">
<a href="#">
<img
class="logo-img"
src="../images/DIYmyCar-Logo.png"
draggable="false"
alt="DIYmyCar Logo"
/>
</a>
</div>
<div class="search">
<div class="search-container">
<input type="text" placeholder="Search For Your Car" />
<button class="search-logo">
<img
src="../images/search-bar.svg"
draggable="false"
alt="Search Icon"
/>
</button>
</div>
</div>
<div class="nav-links">
<div class="home"><a href="home.html">Home</a></div>
<div class="about"><a href="../main/main.html">About</a></div>
</div>
</div>
</nav>
without:
<nav class="navbar">
<div class="navdiv">
<div class="logo">
<a href="#">
<img
class="logo-img"
src="../../images/DIYmyCar-Logo.png"
draggable="false"
/>
</a>
</div>
<div class="nav-links">
<div class="home"><a href="../../home/home.html">Home</a></div>
<div class="about"><a href="../../main/main.html">About</a></div>
</div>
</div>
</nav>
css:
with search:
* {
text-decoration: none;
box-sizing: border-box;
}
.navbar {
background-color: #f8f8f8;
padding: 20px;
}
.navdiv {
display: flex;
align-items: center;
justify-content: space-between; /* Adjusted to keep logo on left and links on right */
width: 100%; /* Ensure the navdiv takes full width */
}
.logo {
width: 140px; /* Fixed size for the logo */
height: 70px; /* Adjusted height for better proportions */
overflow: hidden; /* Ensure child elements respect the border radius */
display: flex; /* Use flexbox for centering */
justify-content: center; /* Center horizontally */
align-items: center; /* Center vertically */
border-radius: 10%; /* Apply border rounding */
}
.logo-img {
width: 140px; /* Ensure the image fits the container's width */
height: 50%; /* Ensure the image fits the container's height */
object-fit: cover; /* Ensure the image scales proportionally without distortion */
}
.search input {
padding: 8px;
border-radius: 5px;
border: 1px solid #ccc; /* Default border color */
width: 400px; /* Input width */
margin-left: 20px; /* Space between search bar and other elements */
text-align: center; /* Center the placeholder text */
font-size: 18px; /* Adjust font size for better readability */
outline: none; /* Remove default blue focus outline */
transition: border-color 0.3s ease; /* Smooth transition for border color */
border-radius: 15px;
}
.search input:focus {
border: 2.5px solid #fc4be1;
}
.nav-links {
display: flex;
align-items: center;
gap: 15px; /* Adds space between the nav links */
}
.navdiv a {
color: #000;
font-size: 18px;
padding: 5px 10px;
}
.navdiv a:hover {
color: #fc4be1; /* Pink hover color */
}
@media (max-width: 768px) {
.navdiv {
justify-content: center;
}
.logo-img {
width: 120px; /* Slightly reduce logo size on smaller screens */
}
.search input {
width: 100px; /* Smaller search input */
}
.navdiv div {
margin: 5px 0; /* Adjust margin for better spacing */
}
.navdiv a {
font-size: 14px; /* Reduce font size for smaller screens */
}
}
without:
* {
text-decoration: none;
box-sizing: border-box;
}
.navbar {
background-color: #f8f8f8;
padding: 20px;
}
.navdiv {
display: flex;
align-items: center;
justify-content: space-between; /* Adjusted to keep logo on left and links on right */
width: 100%; /* Ensure the navdiv takes full width */
}
.logo {
width: 140px; /* Fixed size for the logo */
height: 70px; /* Adjusted height for better proportions */
overflow: hidden; /* Ensure child elements respect the border radius */
display: flex; /* Use flexbox for centering */
justify-content: center; /* Center horizontally */
align-items: center; /* Center vertically */
border-radius: 10%; /* Apply border rounding */
}
.logo-img {
width: 140px; /* Ensure the image fits the container's width */
height: 50%; /* Ensure the image fits the container's height */
object-fit: cover; /* Ensure the image scales proportionally without distortion */
}
.nav-links {
display: flex;
align-items: center;
gap: 15px; /* Adds space between the nav links */
}
.navdiv a {
color: #000;
font-size: 18px;
padding: 5px 10px;
}
.navdiv a:hover {
color: #fc4be1; /* Pink hover color */
}
@media (max-width: 768px) {
.navdiv {
justify-content: center;
}
.logo-img {
width: 120px; /* Slightly reduce logo size on smaller screens */
}
.navdiv div {
margin: 5px 0; /* Adjust margin for better spacing */
}
.navdiv a {
font-size: 14px; /* Reduce font size for smaller screens */
}
}