-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProjects.html
More file actions
633 lines (564 loc) · 14.5 KB
/
Projects.html
File metadata and controls
633 lines (564 loc) · 14.5 KB
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
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>:: hacker_camerawork ::</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<style>
body{
background-color: black;
}
/* Style for the main header */
.main-header {
background-color: #f7f7f7; /* Header background color */
color: #7e8597;
padding: 15px 15px; /* Header padding */
display: flex;
justify-content: space-between; /* Align left and right content */
align-items: center; /* Vertically center content */
}
/* Style for the left end content */
.header-left {
display: flex;
align-items: center;
margin-left: 50px; /* Adjust spacing from the left */
}
.header-left ul {
list-style: none; /* Remove list bullets */
padding: 0;
}
.header-left li {
display: inline;
margin-right: 20px; /* Adjust spacing between elements */
font-size: 14px; /* Decrease font size */
}
.header-left a {
color: #7e8597; /* Left end text color */
text-decoration: none; /* Remove underlines */
}
/* Style for the right end content */
.header-right {
display: flex;
align-items: center;
margin-right: 20px; /* Adjust spacing from the right */
}
/* Style for social media icons */
.header-right a {
color: #7e8597; /* Social media icon color */
text-decoration: none; /* Remove underlines */
font-size: 18px; /* Decrease icon size */
margin-left: 20px; /* Adjust spacing between icons */
}
*{
margin: 0;
padding: 0;
font-family: sans-serif;
}
.banner{
width: 100%;
height: 100vh;
background-image: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75));
background-size: cover;
background-position: center;
}
.navbar{
width: 85%;
margin: auto;
padding: 35px 0;
display: flex;
align-items: center;
justify-content: space-between;
}
.logo{
width: 150px;
cursor: pointer;
}
.navbar ul li{
list-style: none;
display: inline-block;
margin: 0 20px;
position: relative;
}
.navbar ul li a{
text-decoration: none;
color: #7e8597;
text-transform: Uppercase;
}
.navbar ul li::after{
content: '';
height: 3px;
width: 0%;
background: #009688;
position: absolute;
left: 0;
bottom: -10px;
transition:0.5s;
}
.navbar ul li:hover::after{
width:100%;
}
.content{
width: 100%;
position: absolute;
top: 50%;
transform: translateY(-50%);
text-align: center;
color: #fff;
}
.content h1{
font-size: 70px;
margin-top: 80px;
}
.content p{
margin: 20px auto;
font-weight: 100;
line-height: 25px;
}
/* Style for the main header */
.main-header {
background-color: #f7f7f7; /* Header background color */
color: #7e857e; /* Header text color */
padding: 15px 15px; /* Header padding */
display: flex;
justify-content: space-between; /* Align left and right content */
align-items: center; /* Vertically center content */
}
/* Style for the left end content */
.header-left {
display: flex;
align-items: center;
margin-left: 50px; /* Adjust spacing from the left */
}
.header-left ul {
list-style: none; /* Remove list bullets */
padding: 0;
}
.header-left li {
display: inline;
margin-right: 20px; /* Adjust spacing between elements */
font-size: 14px; /* Decrease font size */
}
.header-left a {
color: #7e857e; /* Left end text color */
text-decoration: none; /* Remove underlines */
}
/* Style for the right end content */
.header-right {
display: flex;
align-items: center;
margin-right: 20px; /* Adjust spacing from the right */
}
/* Style for social media icons */
.header-right a {
color: #7e857e; /* Social media icon color */
text-decoration: none; /* Remove underlines */
font-size: 18px; /* Decrease icon size */
margin-left: 20px; /* Adjust spacing between icons */
}
h3, h1, h2, p, h4{
color: white;
}
div{
color: #7e857e;
}
.bread-crumb {
list-style: none;
padding: 0;
margin: 20px 0;
}
.bread-crumb li {
display: inline;
margin-right: 10px;
font-size: 16px;
}
/* About Section */
.about-section-three {
padding: 60px 0;
}
.about-section-three h1 {
font-size: 36px;
text-align: left;
margin-bottom: 40px;
text-decoration: underline;
}
.about-section-three p{
color: white;
font-size: 28px;
padding: 0 160px;
}
.about-section-three p:hover {
color: #ff9900;
}
.about-text-block {
text-align: center;
}
.top-content {
margin-bottom: 20px;
}
.banner{
width: 100%;
height: 100vh;
background-image: linear-gradient(rgba(0,0,0,0.60),rgba(0,0,0,0.60));
background-size: cover;
background-position: center;
}
.navbar{
width: 85%;
margin: auto;
padding: 35px 0;
display: flex;
align-items: center;
justify-content: space-between;
}
.icon {
font-size: 48px;
background-color: #f0f0f0;
color: #333;
border-radius: 50%;
width: 80px;
height: 80px;
line-height: 80px;
margin: 0 auto 20px;
}
/* CSS to make the image circular */
.circular-image {
border-radius: 50%;
}
/* CSS to make the image circular with a specified size */
.circular-image {
width: 200px; /* Adjust the width to set the size of the circular image (2 * radius) */
height: 200px; /* Adjust the height to match the width for a perfect circle */
border-radius: 50%; /* Set border-radius to 50% for a perfect circle */
}
.content-text h2 {
font-size: 27px;
margin: 0;
}
.lower-content h4 {
font-size: 27px;
margin: 20px 0;
}
.text p {
font-size: 22px;
line-height: 1.5;
margin-bottom: 20px;
}
.year-of-service {
font-size: 24px;
text-align: center;
margin-top: 30px;
}
.year-of-service:hover {
font-size: 24px;
color: white;
}
/* Footer Section */
.footer-bottom {
background-color: #333;
color: #fff;
padding: 20px 0;
text-align: center;
}
.copyright-text {
font-size: 16px;
}
.title{
font-size: 24px;
text-align: center;
text-decoration: underline;
color: #fff;
}
.album {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.grid {
display: flex;
flex-wrap: wrap;
gap: 20px;
}
.category-col {
flex: 0 0 calc(33.33% - 20px);
max-width: calc(33.33% - 20px);
}
.category-col a {
display: block;
}
.category-col .layer {
position: relative;
overflow: hidden;
border-radius: 8px;
}
.category-col img {
width: 100%;
height: auto;
transition: transform 0.3s ease-in-out;
}
.category-col:hover img {
transform: scale(1.05);
}
.title-overlay {
position: absolute;
bottom: 50%;
left: 50%;
transform: translate(-50%, 50%);
background: rgba(0, 0, 0, 0.7);
padding: 20px;
color: rgb(226, 226, 226);
text-align: center;
font-size: 26px;
width: 100%;
box-sizing: border-box;
opacity: 0;
transition: opacity 0.3s ease-in-out;
}
.category-col:hover .title-overlay {
opacity: 1;
}
/* New styles for mobile view */
@media only screen and (max-width: 768px) {
.logo {
width: 150px;
margin: 30px;
}
/* Navbar styles */
.navbar {
width: 100%;
padding: 20px 0;
}
.navbar ul {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
}
.navbar ul li {
margin: 10px 0;
}
/* Header adjustments */
.header-left,
.header-right {
margin: 0;
}
.header-left ul li,
.header-right a {
font-size: 12px; /* Decrease font size for smaller screens */
}
/* Navbar adjustments */
.navbar {
width: 100%;
padding: 20px 0;
}
.navbar ul {
flex-direction: column;
align-items: center;
padding: 10px;
}
.navbar ul li {
margin: 10px 0;
}
/* Content adjustments */
.content h1 {
font-size: 40px; /* Adjust font size */
margin-top: 40px; /* Update margin */
}
.content p {
font-size: 18px; /* Adjust font size */
padding: 0 20px; /* Update padding */
}
/* Album grid adjustments */
.album {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 20px;
}
.category-col {
flex: 80%;
max-width: 80%;
text-align: center;
margin-left: 45px;
}
.category-col h3 {
font-size: 18px; /* Adjust font size for mobile view */
margin-top: 10px; /* Add margin for mobile view */
white-space: nowrap; /* Prevent title from wrapping to the next line */
overflow: hidden; /* Hide any overflowing content */
text-overflow: ellipsis; /* Display an ellipsis (...) for overflowing text */
display: block; /* Display the h3 heading */
}
.title-overlay h3 {
display: none; /* Hide the title inside the overlay in mobile view */
}
.category-col img {
width: 100%;
}
.title-overlay h3 {
font-size: 18px; /* Adjust font size as needed */
}
/* Footer adjustments */
.footer-bottom {
padding: 10px 0;
}
.copyright-text {
font-size: 12px;
}
}
</style>
</head>
<body>
<!-- main header -->
<header class="main-header">
<!-- header left -->
<div class="header-left">
<ul class="topbar-info">
<li><i class="icon-pin"></i> Nellore, Andhra Pradesh</li>
<li><i class="icon-mail"></i> <a href="mailto:hackercamerawork@gmail.com">hackercamerawork@gmail.com</a></li>
<li><i class="icon-phone"></i> +91-7981471527</li>
</ul>
</div>
<!-- header right -->
<div class="header-right">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
</div>
</header>
<!-- Your page content goes here -->
<div class="banner">
<div class="navbar">
<img src="logo w.png" class="logo">
<ul>
<li><a href="index.html" style="color: white;">Home</a></li>
<li><a href="Posts.html" style="color: white;">Gallery</a></li>
<li><a href="Projects.html" style="color: white;">Projects</a></li>
<li><a href="About.html" style="color: white;">About</a></li>
<li><a href="contact.html" style="color: #fff;">Contact</a></li>
</ul>
</div>
<div class="title">
<h2>PROJECTS</h2>
</div>
<!-- Your existing HTML code -->
<div class="album">
<div class="grid">
<!-- Repeat this structure for each project -->
<div class="category-col">
<a href="project-1.html" target="_blank">
<div class="layer">
<img src="babymom.jpg" width="1080" height="2160">
<div class="title-overlay">
<h3>Wild Life</h3>
</div>
</div>
</a>
</div>
<div class="category-col">
<a href="project-2.html" target="_blank">
<div class="layer">
<img src="kissing birds.jpg" width="1080" height="2160">
<div class="title-overlay">
<h3>Birds</h3>
</div>
</div>
</a>
</div>
<div class="category-col">
<a href="project-3.html" target="_blank">
<div class="layer">
<img src="teju (2).jpg" width="1080" height="2160">
<div class="title-overlay">
<h3>Wedding</h3>
</div>
</div>
</a>
</div>
<div class="category-col">
<a href="project-4.html" target="_blank">
<div class="layer">
<img src="vaishu.jpg" width="1080" height="2160">
<div class="title-overlay">
<h3>Shoots</h3>
</div>
</div>
</a>
</div>
<div class="category-col">
<a href="project-5.html" target="_blank">
<div class="layer">
<img src="oldman.jpg" width="1080" height="2160">
<div class="title-overlay">
<h3>Street</h3>
</div>
</div>
</a>
</div>
<div class="category-col">
<a href="project-6.html" target="_blank">
<div class="layer">
<img src="idol (2).jpg" width="1080" height="2160">
<div class="title-overlay">
<h3>Devotion</h3>
</div>
</div>
</a>
</div>
<div class="category-col">
<a href="project-7.html" target="_blank">
<div class="layer">
<img src="brihadeeshwara.jpg" width="1080" height="2160">
<div class="title-overlay">
<h3>Architecture</h3>
</div>
</div>
</a>
</div>
<div class="category-col">
<a href="project-8.html" target="_blank">
<div class="layer">
<img src="chicken.jpg" width="1080" height="2160">
<div class="title-overlay">
<h3>Food</h3>
</div>
</div>
</a>
</div>
<div class="category-col">
<a href="project-9.html" target="_blank">
<div class="layer">
<img src="evening1.JPG" width="1080" height="2160">
<div class="title-overlay">
<h3>Nature</h3>
</div>
</div>
</a>
</div>
</div>
</div>
<!--Footer Bottom-->
<div>
<footer>
<div class="footer-bottom">
<div class="container">
<div class="container-wrapper">
<div class="copyright-text"> All Rights Reserved © 2021 | Hacker_Camerawork</div>
</div>
</div>
</div>
</footer>
</div>
<!--End pagewrapper-->
<script>
document.addEventListener("DOMContentLoaded", function () {
var grid = document.querySelector('.grid');
var masonry = new Masonry(grid, {
itemSelector: '.category-col',
columnWidth: '.category-col',
gutter: 20, // Adjust the space between columns if needed
});
});
</script>
</body>
</html>