-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
651 lines (569 loc) · 15.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
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,900;1,700&display=swap");
:root {
--font-family: "Roboto", sans-serif;
--normal-font: 400;
--bolder-font: 900;
--bg-color: #fcfcfc;
--primary-color: #4756df;
--secondary-color: #ff7235;
--primary-shadow: #8b8eaf;
--secondary-shadow: #a17a69;
--bottom-margin: 0.5rem;
--bottom-margin-2: 1rem;
--line-height: 1.7rem;
--transition: 0.3s;
}
img {
width: 300px;
height: 300px;}
html {
scroll-behavior: smooth;
}
a {
text-decoration: none;
color: var(--primary-color);
}
a:hover {
color: var(--secondary-color);
}
body {
font-family: var(--font-family);
}
/* nav {
position: sticky;
top: 0;
left: 0;
z-index: 1;
display: flex;
align-items: center;
justify-content: space-between;
padding: 1.5rem 3.5rem;
background-color: var(--bg-color);
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}
nav h1 {
color: var(--primary-color);
}
nav a {
color: var(--primary-color);
transition: var(--transition);
}
nav a:hover {
color: var(--secondary-color);
border-bottom: 2px solid var(--secondary-color);
}
nav ul {
display: flex;
gap: 1.9rem;
}
nav ul li {
font-weight: var(--bold-font);
} */
/*
.burger {
color: var(--primary-color);
font-size: 2rem;
border: 0;
background-color: transparent;
cursor: pointer;
display: none;
} */
.tap {
display: flex;
align-items: center;
justify-content: center;
gap: 16.5rem;
max-width: 68.75rem;
margin: auto;
margin-top: 2.5rem;
margin-left: 0 0 02.5rem;
}
.bio {
width: 35rem;
padding: 0.625rem;
border-radius: 20px;
box-shadow: 0px 2px 15px 2px var(--primary-shadow);
}
.bio h1 {
margin-bottom: var(--bottom-margin);
}
.bio p {
line-height: var(--line-height);
padding: 0.3rem 0;
}
.skills {
max-width: 68.75rem;
margin: auto;
text-align: center;
margin-top: 10.5rem;
}
.skill-header {
margin-bottom: 1rem;
}
.skill-wrapper {
padding: 1.25rem;
}
.icon {
width: 12rem;
height: 11rem;
}
.icon-card {
background-color: #fff;
border-radius: 11px;
box-shadow: 0 3px 10px var(--secondary-shadow);
padding: 20px;
margin: 10px;
}
.contact {
text-align: center;
}
.contacts {
display: flex;
flex-direction: row;
justify-content: center;
margin-left: auto;
margin-right: auto;
margin-top: 1.5rem;
}
.concon {
width: 4rem;
height: 4rem;
}
.first-look {
position: fixed;
right: 8cm;
top: 4cm;
}
.name {
font-weight: bold;
object-fit: none;
text-align: center;
}
.backg {
background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
background-size: 400% 400%;
animation: gradient 15s ease infinite;
/* height: 100vh; */
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.container-skillbar {
width: 60%;
height: 100%;
height: 100vh;
display: flex;
flex-direction: column;
margin: auto !important;
justify-content: center;
padding: 0;
}
.skillbar {
position: relative;
display: block;
width: 100%;
background: #efefef;
border-radius: 3px;
transition: 0.4s linear;
transition-property: width, background-color;
margin-bottom: 25px;
border-radius: 3px 3px 3px 3px;
background: hsl(207deg 50% 5%);
height: 32px;
max-height: 6%;
overflow: hidden;
box-shadow: 0 0 1px 0.75px rgb(22 26 38), 0 0 2px 0.75px rgb(67 68 88 / 50%);
}
.skillbar-title {
position: absolute;
top: 0;
left: 0;
width: 110px;
font-weight: bold;
font-size: 13px;
color: #fff;
background: #6adcfa;
background-color: black !important;
background-image: linear-gradient(
#272028,
#231d1f,
#201921,
#231e1b,
#231c24
) !important;
box-shadow: 0px 0 2.5px 1px #130c09 !important;
margin-bottom: 25px;
background: #09131b;
height: 100%;
overflow: hidden;
}
.skillbar-title span {
background: rgba(0, 0, 0, 0.15);
padding: 0 20px;
font-family: "Proxima Nova", sans-serif;
font-size: 10px !important;
letter-spacing: 1.6px !important;
text-transform: uppercase !important;
color: #a09a9c;
text-shadow: 0.5px 0.5px 0.5px #352f31, -0.5px 0.5px 0.5px #161415,
0.5px -0.5px 0.5px #2f292b, -0.5px -0.5px 0.5px #424242, 0 0 1px #302a2c,
0 0 2px #160d10;
height: 100%;
overflow: hidden;
flex-direction: column;
display: flex;
justify-content: center;
}
.skillbar-bar {
width: 0px;
border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
height: 32px;
width: 50%;
display: block;
border-radius: 3px 3px 3px 3px;
-webkit-border-radius: 3px 3px 3px 3px;
}
.skill-bar-percent {
position: absolute;
right: 6px;
top: 0;
font-weight: 400;
font-size: 12px;
line-height: 24px;
color: white;
font-family: Roboto Condensed;
}
.one,
.two,
.three,
.four,
.five,
.six,
.seven {
background-image: linear-gradient(
var(--center-1),
var(--center-2),
var(--center-3)
);
box-shadow: 0 0 0.5px var(--center-3),
-3px -20px 14px 3px rgba(20, 7, 14, 0.15),
3px 20px 14px -3px rgba(241, 249, 255, 0.025),
-3px -17px 14px -3px rgba(241, 249, 255, 0.025),
0 -20px 10px -10px rgba(44, 6, 13, 0.05) inset,
0 -0px 10px -10px rgba(44, 6, 13, 0.05) inset,
0 30px 20px -10px rgba(241, 249, 255, 0.05) inset,
0 -0.25px 0.75px 0.25px var(--center-1),
0 0.5px 0.75px 0.25px var(--center-3), 0 -0.75px 2px -0.75px var(--center-1),
0 0.75px 2px -0.75px var(--center-3),
0 1px 1.75px -0.75px var(--center-4) inset,
0 -3px 4px -3px var(--center-5) inset, 0 3px 3px -3px var(--center-6),
0 -4px 7px -4px var(--center-1), 0 4px 7px -4px var(--center-6);
}
.skillbar-bar.one {
background-image: linear-gradient(#0f1621, #171d33, #222632);
box-shadow: 0 0 0.5px #222632, -3px -20px 14px 3px rgb(20 7 14 / 15%),
3px 20px 14px -3px rgb(241 249 255 / 3%),
-3px -17px 14px -3px rgb(241 249 255 / 3%),
0 -20px 10px -10px rgb(44 6 13 / 5%) inset,
0 0px 10px -10px rgb(44 6 13 / 5%) inset,
0 30px 20px -10px rgb(241 249 255 / 5%) inset,
0 -0.25px 0.75px 0.25px #0f1622, 0 0.5px 0.75px 0.25px #222632,
0 -0.75px 2px -0.75px #0f1622, 0 0.75px 2px -0.75px #222632,
0 1px 1.75px -0.75px #313842 inset, 0 -3px 4px -3px #1c1f30 inset,
0 3px 3px -3px #3d3a4d, 0 -4px 7px -4px #0f1622, 0 4px 7px -4px #3d3a4d !important;
}
.skillbar-bar.two {
background-image: linear-gradient(
rgb(61 48 110),
rgb(80 60 121),
rgb(106 90 189),
rgb(106 90 189)
);
box-shadow: 0 0 0.25px rgb(106 90 189),
-0.5px -0.75px 1px rgb(241 249 255 / 15%) inset,
-0.75px -1.5px 1.5px rgb(44 6 13 / 5%) inset,
0 -0.5px 0.75px 0.25px rgb(61 48 110), 0 0.5px 0.75px 0.25px rgb(106 90 189),
0 -0.75px 2px -0.75px rgb(61 48 110), 0 0.75px 2px -0.75px rgb(106 90 189),
-0.5px -2px 3px 0.75px rgb(44 6 13 / 90%),
-15px -20px 20px 2px rgb(150 90 64 / 35%),
-7px -7px 5px -0.5px rgb(150 90 64 / 50%),
-7px -3px 7px rgb(201 149 135 / 55%),
-10px -10px 15px rgb(201 149 135 / 25%);
}
.skillbar-bar.three {
background-image: linear-gradient(#4058a2, #3c5fb9, #0d7bf4, #2680f8);
box-shadow: 0 0 0.25px #0d7bf4,
-0.5px -0.75px 1px rgba(241, 249, 255, 0.15) inset,
-0.75px -1.5px 1.5px rgba(44, 6, 13, 0.05) inset,
0 -0.5px 0.75px 0.25px #4058a2, 0 0.5px 0.75px 0.25px #2680f8,
0 -0.75px 2px -0.75px #4058a2, 0 0.75px 2px -0.75px #2680f8,
-0.5px -2px 3px 0.75px rgba(44, 6, 13, 0.9),
-15px -20px 20px 2px rgba(150, 90, 64, 0.35),
-7px -7px 5px -0.5px rgba(150, 90, 64, 0.5),
-7px -3px 7px rgba(201, 149, 135, 0.55),
-10px -10px 15px rgba(201, 149, 135, 0.25);
}
.four {
background-image: linear-gradient(
rgb(63 136 181),
rgb(52 148 199),
rgb(15 206 251),
rgb(21 202 247)
);
box-shadow: 0 0 0.25px rgb(15 206 251),
-0.5px -0.75px 1px rgb(241 249 255 / 15%) inset,
-0.75px -1.5px 1.5px rgb(44 6 13 / 5%) inset,
0 -0.5px 0.75px 0.25px rgb(63 136 181),
0 0.5px 0.75px 0.25px hsl(192deg 93% 53%),
0 -0.75px 2px -0.75px rgb(63 136 181), 0 0.75px 2px -0.75px rgb(21 202 247),
-0.5px -2px 3px 0.75px rgb(44 6 13 / 90%),
-15px -20px 20px 2px rgb(150 90 64 / 35%),
-7px -7px 5px -0.5px rgb(150 90 64 / 50%),
-7px -3px 7px rgb(201 149 135 / 55%),
-10px -10px 15px rgb(201 149 135 / 25%);
}
.six {
background-image: linear-gradient(
rgb(181 212 150),
rgb(161 216 144),
rgb(181 244 167),
rgb(179 234 164)
);
box-shadow: 0 0 0.25px rgb(181 244 167),
-0.5px -0.75px 1px rgb(241 249 255 / 15%) inset,
-0.75px -1.5px 1.5px rgb(44 6 13 / 5%) inset,
0 -0.5px 0.75px 0.25px rgb(181 212 150),
0 0.5px 0.75px 0.25px rgb(179 234 164),
0 -0.75px 2px -0.75px rgb(181 212 150),
0 0.75px 2px -0.75px rgb(179 234 164),
-0.5px -2px 3px 0.75px rgb(44 6 13 / 90%),
-15px -20px 20px 2px rgb(150 90 64 / 35%),
-7px -7px 5px -0.5px rgb(150 90 64 / 50%),
-7px -3px 7px rgb(201 149 135 / 55%),
-10px -10px 15px rgb(201 149 135 / 25%);
}
.five {
--button-1: hsl(175deg 97% 57%);
--button-2: hsl(187deg 93% 58%);
--button-3: hsl(196deg 100% 62%);
--button-4: hsl(156deg 96% 64%);
--center-1: hsl(167deg 100% 60%);
--center-2: hsl(160deg 91% 61%);
--center-3: hsl(152deg 64% 54%);
--center-4: hsl(135deg 100% 72%);
--center-5: hsl(166deg 100% 61%);
--center-6: hsl(188deg 100% 69%);
}
.four {
--button-1: hsl(175deg 97% 57%);
--button-2: hsl(187deg 93% 58%);
--button-3: hsl(196deg 100% 62%);
--button-4: hsl(199deg 96% 64%);
--center-1: hsl(172deg 100% 60%);
--center-2: hsl(188deg 91% 61%);
--center-3: hsl(181deg 100% 62%);
--center-4: hsl(183deg 100% 72%);
--center-5: hsl(217deg 100% 61%);
--center-6: hsl(198deg 100% 69%);
}
.seven {
--button-1: #fcb829;
--button-2: #f7cf31;
--button-3: #ffdb3c;
--button-4: #fbdb4c;
--center-1: #ffd531;
--center-2: #f6dc41;
--center-3: #ffda3b;
--center-4: #ffe470;
--center-5: #ffd038;
--center-6: #ffe160;
}
/* Footer */
.footer {
/* position: fixed; */
bottom: 0;
font-size: 18px;
width: 100%;
background-color: #333;
color: #fff;
padding: 30px 0;
border-radius: 10px;
}
.container {
width: 100%;
margin: 0 auto;
padding: 0 50px;
}
.footer-content {
display: grid;
grid-template-columns: 25% 50% 25%;
}
.footer-menu {
list-style: none;
padding: 0;
margin: 0;
text-align: center;
}
.footer-menu li {
display: inline-block;
margin-right: 20px;
}
.footer-menu li:last-child {
margin-right: 0;
}
.footer-menu a {
color: #fff;
text-decoration: none;
}
.social-icons {
list-style: none;
padding: 0;
margin: 0;
}
.social-icons li {
display: inline-block;
margin-right: 10px;
}
.social-icons li:last-child {
margin-right: 0;
}
.social-icons a {
color: #fff;
text-decoration: none;
font-size: 20px;
}
.footer-bottom {
margin-top: 20px;
text-align: center;
}
.footer-bottom p {
margin: 0;
}
@media (max-width: 768px) {
.footer-content {
grid-template-columns: repeat(1, 1fr);
row-gap: 20px;
}
.footer-menu{
text-align: left;
}
.footer-menu li {
display: block;
margin-bottom: 10px;
}
}
.attribute{
position: absolute;
bottom: 10px;
}
#home {
height: 100vh;
background: linear-gradient(
rgba(2, 2, 2, 0.8), rgba(0, 0, 0, 0.6)), url(https://images.spiceworks.com/wp-content/uploads/2022/01/12134251/shutterstock_2057691140.jpg);
/* background-position: center center;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
background-color: #464646; */
}
.home__message {
color: #eee;
margin-left: 18%;
padding-top: 5%;
}
.home__message span {
margin: 10px;
font-size: 1.1em;
}
.home__message a {
color: inherit;
}
.home__message a:hover {
color: salmon;
}
.cv {
margin-top:4%;
}
.ghst-btn {
position: relative;
display: inline-block;
top: 35%;
width: auto;
height: auto;
max-width: 20rem;
min-height: 1rem;
padding: 1rem 2rem 0.8rem 2rem;
border: 2px solid rgba(255,255,255,1);
background-color: rgba(255,255,255,0);
background-image:
radial-gradient(#333 0%, #333 70%, transparent 71%, transparent 100%),
radial-gradient(#333 0%, #333 70%, transparent 71%, transparent 100%),
radial-gradient(#333 0%, #333 70%, transparent 71%, transparent 100%);
background-size: 0 0, 0 0, 0 0;
background-repeat: no-repeat;
background-position: 30% 50%, 70% 50%, 50% 80%;
text-decoration: none;
color: rgba(255,255,255,1);
font-size: 1.7rem;
text-transform: uppercase;
letter-spacing: 0.5rem;
border-radius: 0;
transform: rotate(0);
transition:
border 2.5s 1s,
color 2s 0.6s,
max-width 0.05s 0.6s,
min-height 0.05s 0.6s,
background-color 0.4s,
background-size 0s,
transform 0.4s,
border-radius 0.4s;
}
.ghst-btn:hover {
/* max-width: 10rem;
min-height: 10rem; */
/* color: rgba(255,255,255,0); */
border: 2px solid rgba(255,255,255,1);
border-radius: 50%;
/* background-color: rgba(255,255,255,0.1);
background-size: 1.5rem 1.5rem, 1.5rem 1.5rem, 1.5rem 1rem; */
transform: rotate(400grad);
transition:
border 0.1s,
color 0.15s,
max-width 0.25s,
min-height 0.25s,
background-color 0.25s,
background-size 0.15s 0.45s,
transform 0.4s,
/* border-radius 0.25s 0.3s; */
}
.profile__img {
padding: 0 40px; }
.profile__img img {
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
margin: auto; }
.lead {
font-family: "lora-regular", serif;
font-size: 2rem;
line-height: 1.8;
color: #888888;
}
.intro-paragraph{
line-height: 1.8 !important;
font-size: 20px;
}