-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
662 lines (562 loc) · 13.1 KB
/
style.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
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
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
* {
margin: 0;
padding: 0;
box-sizing: border-box;
scroll-behavior: smooth;
}
body {
min-height: 180vh;
overflow-x: hidden;
}
nav.navbar {
background: #c0392b; /* fallback for old browsers */
background: -webkit-linear-gradient(
to left,
#8e44ad,
#c0392b
); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(
to left,
#8e44ad,
#c0392b
); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
nav.navbar a.navbar-brand {
font-size: 1.6em;
font-weight: 700;
font-family: "Balsamiq Sans", cursive;
}
nav.navbar ul li.nav-item a.nav-link {
font-size: 1.3em;
font-weight: 400;
font-family: "Gentium Basic", serif;
}
nav.navbar ul li.nav-item a.nav-link:hover {
color: white;
transition: all 0.4s ease-in;
}
/* Section Description Starts */
section.desc {
height: 500px;
background: #c0392b; /* fallback for old browsers */
background: -webkit-linear-gradient(
to left,
#8e44ad,
#c0392b
); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(
to left,
#8e44ad,
#c0392b
); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
display: flex;
align-items: center;
justify-content: center;
clip-path: circle(155vh at 50% -70vh);
}
div.content {
max-width: 1000px;
margin-top: 130px;
text-align: center;
color: white;
}
div.content h1 {
margin-top: -100px;
font-size: 3.8em;
font-weight: 700;
font-family: "Merriweather", serif;
text-shadow: 3px 5px 4px black;
animation: 1s ease-out 0s 1 slideInFromLeft;
}
div.content h4 {
font-weight: 400;
margin-top: 20px;
margin-bottom: 25px;
font-family: "Times New Roman", Times, serif;
text-transform: uppercase;
animation: 1s ease-out 0s 1 slideInFromRight;
overflow-x: hidden;
}
div.content a.btn1 {
margin-top: 10px;
padding: 6px 15px;
background: none;
border: 3px solid white;
border-radius: 25px;
color: white;
outline: none;
text-decoration: none;
transition: all 0.4s ease-in;
animation: 1s ease-out 0s 1 slideInFromRight;
}
div.content a.btn1:hover,
div.content a.btn1:active {
background-color: white;
border: 3px solid #b300ff;
color: #b300ff;
cursor: pointer;
transition: all 0.4s ease-in;
}
/* Section About Starts */
section.about div.container div.row div.one {
display: flex;
align-items: center;
justify-content: center;
}
section.about div.container div.row div.one img {
width: 500px;
height: 500px;
}
section.about div.container div.row div.two {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
section.about div.container div.row div.two h2 {
margin-bottom: 15px;
font-size: 42px;
font-family: "Cinzel", serif;
}
section.about div.container div.row div.two p {
margin-top: 10px;
font-family: "Raleway", sans-serif;
color: rgb(83, 83, 83);
}
section.about div.container div.row div.two button.btn {
color: white;
background-color: black;
border-radius: 0;
border: 2px solid white;
transition: all 0.3s ease-out;
padding: 5px 15px;
}
section.about div.container div.row div.two button.btn:hover {
background-color: white;
color: black;
border: 2px solid black;
transition: all 0.3s ease-out;
}
/* Section Services Starts */
section.services {
background-color: #f2f2f2;
}
section.services div.three {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-top: 50px;
}
section.services div.three h2 {
font-size: 42px;
font-family: "Cinzel", serif;
}
section.services div.three h4 {
margin-top: 60px;
font-weight: 600;
font-size: 25px;
font-family: "Texturina", serif;
}
section.services div.four {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-top: 80px;
}
section.services div.five {
text-align: center;
}
section.services div.center {
border-left: 2px solid rgb(117, 116, 116);
border-right: 2px solid rgb(117, 116, 116);
}
section.services div.five i {
font-size: 40px;
margin-bottom: 30px;
padding: 30px 30px;
border: 1px solid rgb(202, 202, 202);
border-radius: 51px;
}
section.services div.five i:hover {
background-color: white;
border: 1px solid white;
cursor: pointer;
transition: all 0.4s ease-in;
}
section.services div.five h5 {
font-family: "Texturina", serif;
font-weight: 600;
}
section.services div.five p {
font-weight: 400;
font-size: 16px;
font-family: "Raleway", sans-serif;
color: rgb(63, 63, 63);
}
/* Section Extra Starts */
section.extra {
/* height: 300px; */
background: url("https://images.unsplash.com/photo-1552082919-e60010758c47?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=1050&q=80");
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
color: white;
}
section.extra div.container div.extra1 i {
font-size: 45px;
margin-bottom: 20px;
}
section.extra div.container div.extra1 h5 {
font-size: 20px;
font-weight: 500;
text-transform: uppercase;
}
section.extra div.container div.extra1 h1 {
font-size: 55px;
font-weight: 800;
}
section.extra div.container div.extra1 {
display: flex;
height: 300px;
text-align: center;
flex-direction: column;
align-items: center;
justify-content: center;
}
/* Section Skills Start */
section.skills {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
section.skills h2 {
font-size: 42px;
margin-top: 30px;
margin-bottom: 20px;
text-transform: uppercase;
font-weight: 500;
font-family: "Cinzel", serif;
}
section.skills div.container ul {
display: flex;
align-items: center;
justify-content: center;
}
section.skills div.container ul li.list-group-item {
display: flex;
width: 50%;
align-items: center;
justify-content: center;
border: 2px solid rgb(146, 145, 145);
border-bottom: 0;
border-radius: 15px;
}
section.skills div.container ul li.last {
border-bottom: 2px solid rgb(146, 145, 145);
}
section.skills div.container ul li {
font-size: 20px;
font-weight: 500;
}
section.skills div.container ul li.list-group-item img {
margin-left: 200px;
}
/* Section Achievements Start */
section.achievements {
background-color: rgb(250, 238, 220);
}
section.achievements div.container div.card {
border: 2px solid black;
text-align: center;
padding: 10px;
margin-top: 20px;
border-radius: 20px;
}
section.achievements div.container div.card img {
border-bottom: 2px solid black;
}
section.achievements div.container div.card h5 {
font-size: 15px;
}
section.achievements div.container h2 {
text-align: center;
font-size: 42px;
text-transform: uppercase;
margin: 20px 0;
padding-top: 20px;
font-family: "Cinzel", serif;
}
/* Section Blogs Start */
section.blogs {
background: url("https://images.unsplash.com/photo-1588392382834-a891154bca4d?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=1055&q=80");
margin-top: -20px;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
padding-bottom: 60px;
}
section.blogs div.container h2 {
text-align: center;
font-size: 42px;
color: white;
font-weight: 600;
text-transform: uppercase;
margin: 20px 0;
padding-top: 20px;
font-family: "Cinzel", serif;
}
section.blogs div.container div.col div.card div.line {
display: flex;
flex-direction: row;
}
section.blogs div.container div.col div.card div.line p {
margin-top: 2px;
}
section.blogs div.container div.col div.card div.line i {
font-size: 24px;
margin: 2px 3px 2px 25px;
}
/* Section Projects Starts */
section.projects h2.pro,
section.projects h4.pro {
text-align: center;
}
section.projects h2 {
font-size: 42px;
font-family: "Cinzel", serif;
}
section.projects h4 {
font-weight: 600;
font-size: 25px;
font-family: "Texturina", serif;
padding-top: 30px;
}
section.projects div.container div.row div.col-lg-6 img {
height: 260px;
width: 540px;
margin: 30px 0px;
box-shadow: 5px 6px 6px 2px rgb(102, 102, 102);
}
hr {
border: 1px;
background-image: linear-gradient(
to right,
rgba(0, 0, 0, 0),
rgba(0, 0, 0, 0.75),
rgba(0, 0, 0, 0)
);
height: 1.5px;
}
section.projects div.container div.row div.col-lg-6 {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
section.projects div.container div.row div.col-lg-6 h4 {
font-weight: 600;
font-size: 28px;
}
section.projects div.container div.row div.col-lg-6 p {
font-weight: 400;
font-family: "Raleway", sans-serif;
}
/* Section Contact Starts */
section.contact {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: white;
background: url("https://images.unsplash.com/photo-1575997425321-82f35489e4e1?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=1189&q=80");
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
section.contact div.container form {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
section.contact div.container input,
section.contact div.container textarea {
width: 50%;
margin-bottom: 20px;
margin-top: 10px;
background: none;
padding: 5px 10px;
outline: none;
font-size: 18px;
border: 0px solid grey;
border-bottom: 2px solid rgb(248, 161, 0);
color: white;
background-color: transparent;
font-weight: 500;
}
section.contact div.container input:-ms-input-placeholder,
section.contact div.container textarea:-ms-input-placeholder {
background: none;
}
section.contact h2 {
text-align: center;
font-size: 42px;
font-family: "Cinzel", serif;
}
section.contact h4 {
text-align: center;
margin-top: 60px;
font-weight: 600;
font-family: "Texturina", serif;
font-size: 25px;
}
section.contact div.container form input#address,
section.contact div.container form input#number,
section.contact div.container form input#email,
section.contact div.container form textarea#concern {
display: none;
}
section.contact div.container form button.btn {
color: white;
background-color: black;
border-radius: 0;
border: 2px solid white;
transition: all 0.3s ease-out;
padding: 5px 15px;
margin-bottom: 40px;
}
section.contact div.container form button.btn:hover {
background-color: white;
color: black;
border: 2px solid black;
transition: all 0.3s ease-out;
}
/* Footer Section Starts */
footer.foot {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: rgb(27, 27, 27);
color: white;
}
footer.foot h2 {
padding-top: 10px;
font-size: 42px;
font-weight: 600;
font-family: "Balsamiq Sans", cursive;
}
footer.foot div.social {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
padding-bottom: 20px;
}
footer.foot div.social i {
font-size: 45px;
margin-left: 10px;
margin-right: 10px;
margin-top: 20px;
color: rgb(221, 221, 221);
transition: all 0.4s ease-out;
}
footer.foot div.social i:hover {
color: grey;
transition: all 0.4s ease-out;
}
footer.foot div.others {
border-top: 1px solid rgb(128, 128, 128);
padding-top: 20px;
padding-bottom: 30px;
}
footer.foot div.others div.row div.col-sm-3 {
text-align: center;
}
footer.foot div.others h6 {
font-weight: 400;
}
footer.foot div.others p {
text-align: center;
margin-top: 45px;
font-weight: 400;
color: rgb(194, 194, 194);
font-size: 15px;
}
@media (max-width: 445px) and (min-width: 400px) {
section.about div.container div.row div.one img {
width: 350px;
height: 350px;
}
}
@media (max-width: 399px) and (min-width: 320px) {
section.about div.container div.row div.one img {
width: 300px;
height: 300px;
}
}
@media (max-width: 420px) and (min-width: 320px) {
section.projects div.container div.row div.col-lg-6 img {
width: 300px;
height: 180px;
}
}
@media (max-width: 545px) and (min-width: 421px) {
section.projects div.container div.row div.col-lg-6 img {
width: 421px;
height: 220px;
}
}
@media (max-width: 1168px) and (min-width: 990px) {
section.projects div.container div.row div.col-lg-6 img {
width: 500px;
height: 250px;
}
}
@media (max-width: 1000px) and (min-width: 320px) {
section.skills div.container ul li.list-group-item {
display: flex;
width: 90%;
align-items: center;
justify-content: center;
border: 2px solid rgb(146, 145, 145);
border-bottom: 0;
border-radius: 15px;
}
section.skills div.container ul li.list-group-item img {
margin-left: 100px;
}
}
@keyframes slideInFromLeft {
0% {
transform: translateX(-100%);
}
100% {
transform: translateX(0);
}
}
@keyframes slideInFromRight {
0% {
transform: translateX(100%);
}
100% {
transform: translateX(0);
}
}
@keyframes slideInFromBottom {
0% {
transform: translateY(100%);
}
100% {
transform: translateY(0);
}
}