Skip to content

Commit

Permalink
Merge pull request #48 from 1337kid/main
Browse files Browse the repository at this point in the history
landing
  • Loading branch information
1337kid authored Nov 27, 2024
2 parents 2ad0af5 + d236f59 commit f55bcd3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 75 deletions.
6 changes: 3 additions & 3 deletions src/components/BlobAnimation.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ const BlobAnimation = () => {
src={right}
alt="bot-right"
/>
<Image className="lcircle1" src={circle1} />
<Image className="lcircle2" src={circle2} />
<Image className="lcircle3" src={circle3} />
<Image className="lcircle1 max-lg:hidden" src={circle1} />
<Image className="lcircle2 max-md:hidden" src={circle2} />
<Image className="lcircle3 max-md:hidden" src={circle3} />
<div
className="container max-w-full md:max-w-[70%] relative m-auto flex flex-col min-h-screen text-our_white justify-center gap-[20px] z-0"
data-aos="fade-up"
Expand Down
82 changes: 10 additions & 72 deletions src/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -76,100 +76,38 @@ body {
.lcircle1 {
position: absolute;
top: -284px;
height: 900px;
height: 883px;
width: auto;
z-index: 2;
right: -230px;
z-index: 0;
right: -100px;
transform: rotate(-200deg);
animation: rotate 15s linear infinite;
opacity: 0.5;
}

.lcircle2 {
position: absolute;
top: -200px;
height: 700px;
top: -198px;
height: 711px;
width: auto;
right: -125px;
right: -35px;
transform: rotate(-180deg);
animation: rotate 20s linear infinite;
z-index: 2;
opacity: 0.5;
z-index: 0;
}


.lcircle3 {
position: absolute;
top: -67px;
height: 450px;
height: 448px;
width: auto;
right:10px;
right:95px;
width: auto;
animation: rotate 25s linear infinite;
z-index: 2;
opacity: 0.5;
z-index: 0;
}

@media (max-width: 900px) {
.lcircle1 {
height: 800px;
width: auto;
top: -400px;
right: -400px;
}

.lcircle2 {
height: 600px;
width: auto;
top: -300px;
right: -300px;
}
}

@media (max-width: 768px) {
.lcircle1 {
height: 600px;
width: auto;
top: -300px;
right: -300px;
}

.lcircle2 {
height: 500px;
width: auto;
top: -250px;
right: -250px;
}
}

@media (max-width: 530px) {
.lcircle1 {
height: 450px;
width: auto;
top: -225px;
right: -225px;
}

.lcircle2 {
height: 300px;
width: auto;
top: -150px;
right: -150px;
}

.lcircle3 {
height: 100px;
width: auto;
top: -50px;
right: -50px;
}
}

@media (max-width: 420px) {
.lcircle1 {
display: none;
}
}

.skeleton {
background-image: linear-gradient(
Expand Down

0 comments on commit f55bcd3

Please sign in to comment.