Skip to content

Commit 95c930d

Browse files
committed
there are still stuff to add and fix
1 parent dba9a7d commit 95c930d

9 files changed

Lines changed: 182 additions & 22 deletions

File tree

assets/biomonitor.svg

Lines changed: 9 additions & 0 deletions
Loading

assets/dot-grey.png

408 Bytes
Loading

assets/dot-white.png

281 Bytes
Loading

assets/heal-kill.svg

Lines changed: 9 additions & 0 deletions
Loading

assets/kiroshi.svg

Lines changed: 9 additions & 0 deletions
Loading

assets/vector-left.png

275 Bytes
Loading

assets/vector-right.png

246 Bytes
Loading

index.html

Lines changed: 48 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,23 +80,68 @@ <h1>Discover how technology came so far with us</h1>
8080
<div class="impl-card">
8181
<img src="assets/impl-karanzikov.svg" alt="karanzikov" />
8282
<h3>KARENZIKOV</h3>
83-
<p>This cyberware implant will allow you to aim and shoot while dodging enemy attacks.</p>
83+
<p>
84+
This cyberware implant will allow you to aim and shoot while dodging
85+
enemy attacks.
86+
</p>
8487
</div>
8588
<div class="impl-card">
8689
<img src="assets/impl-mantis blades.svg" alt="mantis blades" />
8790
<h3>MANTIS BLADES</h3>
88-
<p>Perfect for those who put personal safety first, not to mention discreet too.</p>
91+
<p>
92+
Perfect for those who put personal safety first, not to mention
93+
discreet too.
94+
</p>
8995
</div>
9096
<div class="impl-card">
9197
<img src="assets/impl-optical camo.svg" alt="optical camo" />
9298
<h3>OPTICAL CAMO</h3>
93-
<p>The Optical Camo is a piece of Integumentary System Cyberware implant</p>
99+
<p>
100+
The Optical Camo is a piece of Integumentary System Cyberware
101+
implant
102+
</p>
94103
</div>
95104
</div>
96105
</section>
97106

98107
<section class="poplr-implants-wrap">
99108
<p>OUR MOST POPULAR IMPLANTS</p>
109+
110+
<div class="most-pop-wrper">
111+
<span class="arrow-left">
112+
<img src="assets/vector-left.png" alt="Left Arrow" />
113+
</span>
114+
115+
<div class="pop-card-wrp">
116+
<img src="assets/kiroshi.svg" alt="Kiroshi" />
117+
<h3>KIROSHI OPTICS</h3>
118+
<p>
119+
The Kiroshi Optics allow scanning of the environment, as well as
120+
display information about citizens of Nigt city
121+
</p>
122+
</div>
123+
<div class="pop-card-wrp">
124+
<img src="assets/biomonitor.svg" alt="biomonitor" />
125+
<h3>BIOMONITOR</h3>
126+
<p>
127+
The Biomonitor is a piece of circulatory System Cyberware implant
128+
</p>
129+
</div>
130+
<div class="pop-card-wrp">
131+
<img src="assets/heal-kill.svg" alt="heal-kill" />
132+
<h3>HEAL - ON - KILL</h3>
133+
<p>The Heal-On-Kill is a Frontal Cortex Cyberware implant</p>
134+
</div>
135+
136+
<span class="arrow-right">
137+
<img src="assets/vector-right.png" alt="Right Arrow" />
138+
</span>
139+
140+
</div>
141+
<span class="dots">
142+
<img src="assets/dot-white.png" alt="dot white" />
143+
<img src="assets/dot-grey.png" alt="dot grey" />
144+
</span>
100145
</section>
101146

102147
<footer>

styles.css

Lines changed: 107 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ header {
1515
background-image: url(assets/Zhang-Yiwei-CGI-women-short-hair-purple-hair-blue-eyes-2185487-wallhere\ 1.svg);
1616
background-size: cover;
1717
color: #ffffff;
18-
position: relative;
1918
background-position: center;
2019
height: 100vh;
2120
}
@@ -27,6 +26,7 @@ header {
2726
justify-content: space-between;
2827
align-items: center;
2928
padding: 15px 80px;
29+
flex-wrap: wrap;
3030
}
3131

3232
.logo img {
@@ -99,21 +99,15 @@ header {
9999
max-width: 1081px;
100100
height: 327px;
101101
top: 348px;
102-
left: 179.16px;
102+
margin-left: 179.16px;
103+
margin-right: 179.16px;
103104
display: flex;
104105
flex-direction: column;
105106
align-items: center;
106107
gap: 40px;
107108
text-align: center;
108109
}
109110

110-
@media (max-width: 1300px) {
111-
.welcome {
112-
left: 50%;
113-
transform: translateX(-50%);
114-
}
115-
}
116-
117111
.welcome h1 {
118112
font-weight: 700;
119113
font-style: Bold;
@@ -302,8 +296,9 @@ footer {
302296
color: #ffffff;
303297
}
304298

299+
/* calculated myself ))) (5057-497-595-616-713-656-176-1024)/6 */
305300
section {
306-
margin-top: 150px;
301+
margin-top: 130px;
307302
}
308303

309304
.social-pad-wrap {
@@ -355,7 +350,6 @@ section {
355350
flex-direction: column;
356351
opacity: 1;
357352
height: 656px;
358-
position: relative;
359353
width: auto;
360354
}
361355

@@ -367,27 +361,28 @@ section {
367361
line-height: 100%;
368362
letter-spacing: 0%;
369363
text-align: center;
364+
margin-bottom: 119px;
370365
}
371366

372367
.implant-crd-wrp {
373368
display: flex;
374369
justify-content: center;
375370
height: 537px;
376371
opacity: 1;
377-
top: 119px;
378372
gap: 20px;
379-
position: absolute;
380-
width: 100%
373+
width: 100%;
381374
}
382375

383376
.impl-card {
384-
width: 350px;
377+
width: 386px;
385378
height: 537px;
386379
opacity: 1;
387-
border: solid 1px #e15cf2;
380+
border: solid 3px #e15cf2;
388381
position: relative;
389382
}
390383

384+
/* we need a media here */
385+
391386
.impl-card img {
392387
width: 283px;
393388
height: 246px;
@@ -416,9 +411,102 @@ section {
416411
font-size: 14px;
417412
line-height: 100%;
418413
letter-spacing: 0%;
414+
position: absolute;
415+
top: 393px;
416+
max-width: 275px;
417+
margin-left: 60px;
418+
margin-right: 60px;
419+
}
420+
421+
/* for this i did use the previous code nearly the same but since there were few extra details i wrote it one more time */
422+
423+
.poplr-implants-wrap {
424+
display: flex;
425+
flex-direction: column;
426+
opacity: 1;
427+
height: 713px;
428+
width: auto;
429+
}
430+
431+
.poplr-implants-wrap p {
432+
color: #ffffff;
433+
font-weight: 700;
434+
font-style: Bold;
435+
font-size: 24px;
436+
line-height: 100%;
437+
letter-spacing: 0%;
438+
margin-bottom: 119px;
419439
text-align: center;
440+
}
441+
442+
.most-pop-wrper {
443+
display: flex;
444+
justify-content: center;
445+
height: 594px;
446+
opacity: 1;
447+
gap: 20px;
448+
position: relative;
449+
}
450+
451+
.pop-card-wrp {
452+
width: 386px;
453+
height: 537px;
454+
opacity: 1;
455+
border: solid 3px #6892ff;
456+
position: relative;
457+
}
458+
459+
.pop-card-wrp img {
460+
width: 283px;
461+
height: 246px;
462+
opacity: 1;
463+
top: 60px;
464+
left: 52px;
465+
align-items: center;
466+
position: absolute;
467+
}
468+
469+
.pop-card-wrp h3 {
470+
color: white;
471+
font-weight: 700;
472+
font-style: Bold;
473+
font-size: 18px;
474+
line-height: 100%;
475+
letter-spacing: 0%;
420476
position: absolute;
421-
top: 394px;
422-
padding-left: 60px;
423-
padding-right: 60px;
477+
top: 322px;
478+
left: 120px;
479+
}
480+
481+
.pop-card-wrp p {
482+
color: white;
483+
font-weight: 400;
484+
font-style: Regular;
485+
font-size: 14px;
486+
line-height: 100%;
487+
letter-spacing: 0%;
488+
position: absolute;
489+
top: 393px;
490+
max-width: 275px;
491+
margin-left: 60px;
492+
margin-right: 60px;
493+
}
494+
495+
.arrow-left {
496+
position: absolute;
497+
top: 50%;
498+
left: 33.33px;
499+
}
500+
501+
.arrow-right {
502+
position: absolute;
503+
top: 50%;
504+
right: 33.33px;
505+
}
506+
507+
.dots {
508+
display: flex;
509+
justify-content: center;
510+
gap: 8px;
511+
margin-top: 40px;
424512
}

0 commit comments

Comments
 (0)