-
Notifications
You must be signed in to change notification settings - Fork 0
/
store.html
344 lines (308 loc) · 12.2 KB
/
store.html
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
<html lang="en">
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Kalam">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lora">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Titillium Web">
<title>Store</title>
<meta name="author" content="Mounira Nihad Zitouni and Souleymane">
<meta name="description" content="About the Company">
<style>
* {
margin: 0px;
padding: 0px;
}
body{
font-family: lora;
background-color: white;
}
#nav-bar {
z-index: 10;
width: 100%;
height: 10%;
position: fixed;
display: flex;
background-color: transparent;
transition: ease 0.5s;
font-family: Titillium Web;
}
#nav-bar ul {
list-style-type: none;
margin: auto;
padding: 0;
}
#nav-bar li {
display: inline-block;
}
#nav-bar a {
color: black;
text-decoration: none;
margin-left: 50px;
top: 5%;
}
.underline {
border-bottom: black 1px solid;
padding-bottom: 5px;
}
#banner{
max-height:400px;
overflow: hidden;
}
.banner-content {
text-align: center;
position: absolute;
top: 200px;
left: 50%;
transform: translate(-50%, -50%);
color: black;
}
.banner-content p {
font-size: 300%;
font-weight: bolder;
font-family: Kalam;
}
.banner-content img{
width: 300px;
height: 100px;
}
.product {
display: flex;
}
.product-copy {
justify-content: center;
align-items: center;
margin: auto;
}
.product-copy h1 {
font-family: Kalam;
font-size: 300%;
margin-bottom: 10%;
}
.product-copy p {
font-family: Titillium web;
font-size: 200%;
margin-bottom: 5%;
}
.product-copy ul {
list-style-type: circle;
padding-left: 50px;
}
.product-copy li {
font-family: lora;
font-size: 125%;
}
.buttons {
display: flex;
margin-top: 50px;
}
.button {
padding: 10px 25px;
font-size: 110%;
font-family: Titillium Web;
text-decoration: none;
color: black;
border-radius: 20px;
background-color: skyblue;
font-weight: bold;
}
.button-container {
margin-left: 20px;
}
.footer-container {
padding: 5%;
color: white;
background-color: #2b2d2f;
display:flex;
justify-content: space-between;
}
.footer-variant {
width: 25%;
}
.footer-variant h1 {
color: skyblue;
font-family: Kalam;
margin-bottom: 10px;
}
.footer-variant h2 {
font-family: titillium web;
}
.footer-variant div {
display: flex;
margin-bottom: 5px;
}
.footer-variant div img {
padding-right: 5px;
}
.footer-variant ul {
list-style: none;
}
.footer-variant li a {
text-decoration: none;
color: white;
}
.footer-variant a{
text-decoration: none;
color: white;
}
.icon {
width: 20px;
}
</style>
</head>
<body>
<div class="contianer">
<div id="nav-bar">
<ul>
<li><a href="index.html" class="nav-item">Home</a></li>
<li><a href="about.html" class="nav-item">About Our Products</a></li>
<li><a href="store.html" class="underline">Store</a></li>
<li><a href="FAQ.html" class="nav-item">FAQ</a></li>
<li><a href="AboutCompany.html" class="nav-item">About Us</a></li>
</ul>
</div>
<div id="banner">
<img src="./images/store-front.jpg" alt="Store" style="height: 400px; width: 100%; object-fit: cover; object-position: 50% 10%;">
<div class = "banner-content">
<p>Store</p>
</div>
</div>
<div class="all-products">
<div class="product">
<img src="images/forest-window.png" alt="Window view" style="width: 40%; height: 700px; object-fit: cover;">
<div class="product-copy">
<h1>Basic Package $99</h1>
<p>Includes:</p>
<ul>
<li>Window sized screen</li>
<li>Mounting accessories</li>
<li>Power cord</li>
<li>Installation guide</li>
</ul>
<div class="buttons">
<div class="button-container">
<a href="about.html" class='button'>Learn more!</a>
</div>
<div class="button-container">
<a href="" class='button'>Buy now!</a>
</div>
</div>
</div>
</div>
<div class="product">
<div class="product-copy">
<h1>Premium Package $149</h1>
<p>Includes:</p>
<ul>
<li>Window sized screen</li>
<li>HD camera</li>
<li>Mounting accessories</li>
<li>Power cord</li>
<li>Installation guide</li>
</ul>
<div class="buttons">
<div class="button-container">
<a href="about.html" class='button'>Learn more!</a>
</div>
<div class="button-container">
<a href="" class='button'>Buy now!</a>
</div>
</div>
</div>
<img src="images/window view.jpg" style="width: 40%; height: 700px; object-fit: cover;">
</div>
<div class="product">
<img src="images/travel-case.jpg" style="width: 40%; height: 700px; object-fit: cover;">
<div class="product-copy">
<h1>Travel case $19</h1>
<p>Includes:</p>
<ul>
<li>Sleeve style case for screen and camera</li>
</ul>
<div class="buttons">
<div class="button-container">
<a href="about.html" class='button'>Learn more!</a>
</div>
<div class="button-container">
<a href="" class='button'>Buy now!</a>
</div>
</div>
</div>
</div>
</div>
<div class="footer-container">
<div class="footer-variant">
<h1>Elevated Dreams</h1>
<p>
Here at Elevated Dreams we strive to give the most relaxing and
productive flying experience possible.
</p>
</div>
<div class="footer-variant">
<h2>Contact Us</h2>
<div>
<img src='images/email-white.png' alt='email icon' class='icon'>
<a href = "mailto: [email protected]">Vincent Préseault</a>
</div>
<div>
<img src='images/email-white.png' alt='email icon' class='icon'>
<a href = "mailto: [email protected]">Amin Arshadi</a>
</div>
<div>
<img src='images/email-white.png' alt='email icon' class='icon'>
<a href = "mailto: [email protected]">Souleymane Diallo</a>
</div>
<div>
<img src='images/email-white.png' alt='email icon' class='icon'>
<a href = "mailto: [email protected]">Charlie Haldane</a>
</div>
<div>
<img src='images/email-white.png' alt='email icon' class='icon'>
<a href = "mailto: [email protected]">Mounira Nihad Zitouni</a>
</div>
<div>
<img src='images/email-white.png' alt='email icon' class='icon'>
<a href = "mailto: [email protected]">Karen Dhindsa</a>
</div>
<div>
<img src='images/email-white.png' alt='email icon' class='icon'>
<a href = "mailto: [email protected]">Dominic Salas</a>
</div>
<div>
<img src='images/011-instagram-white.png' alt='instagram icon' class='icon'>
<p>@ElevatedDreams</p>
</div>
</div>
<div class="footer-variant">
<h2>Key Links</h2>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Our Products</a></li>
<li><a href="store.html">Store</a></li>
<li><a href="FAQ.html">FAQ</a></li>
<li><a href="AboutCompany.html">About Us</a></li>
<li><br></li>
<li>Icons made by <a href="https://www.flaticon.com/authors/freepik" title="Freepik" style='text-decoration: underline;'>Freepik</a> from <a href="https://www.flaticon.com/" title="Flaticon" style='text-decoration: underline;'> www.flaticon.com</a></li>
</ul>
</div>
</div>
</div>
<script>
window.onscroll = function() {
const nav = document.getElementById('nav-bar');
if (window.pageYOffset > 50) {
nav.style.backgroundColor = 'white';
} else {
nav.style.backgroundColor = 'transparent';
}
}
var elements = document.getElementsByClassName("nav-item");
for (i = 0; i < elements.length; i++) {
elements[i].addEventListener('mouseenter', function(e) {
this.classList.add('underline');
})
elements[i].addEventListener("mouseleave", function(e) {
this.classList.remove('underline');
})
}
</script>
</body>
</html>