-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
98 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,81 +1,78 @@ | ||
.card-container { | ||
height: 450px; | ||
width: 350px; | ||
background: rgba(30, 30, 58, 0.452); | ||
box-shadow: 0 8px 32px 0 rgba(51, 56, 133, 0.459); | ||
/* backdrop-filter: blur(10.5px); */ | ||
/* -webkit-backdrop-filter: blur(10.5px); */ | ||
border-radius: 30px; | ||
border: 1.5px solid #fff; | ||
display: flex; | ||
justify-content: center; | ||
gap: 60px; | ||
flex-direction: column; | ||
align-items: center; | ||
transition: 0.3s ease-in-out; | ||
height: 400px; | ||
width: 350px; | ||
background: rgba(26, 26, 43, 0.37); | ||
/* box-shadow: 0 8px 32px 0 rgba(51, 56, 133, 0.459); */ | ||
/* backdrop-filter: blur(10.5px); */ | ||
/* -webkit-backdrop-filter: blur(10.5px); */ | ||
backdrop-filter: blur(10.5px); | ||
border: 1.5px solid #ffffffc7; | ||
display: flex; | ||
justify-content: center; | ||
gap: 30px; | ||
flex-direction: column; | ||
align-items: center; | ||
transition: 0.3s ease-in-out; | ||
} | ||
|
||
.card-container:hover { | ||
border-radius: 30px; | ||
box-shadow: 5px 8px 10px 0 rgba(31, 38, 135, 0.37); | ||
scale: 1.01; | ||
scale: 1.01; | ||
} | ||
|
||
.logoimg { | ||
height: 170px; | ||
width: 170px; | ||
overflow: visible; | ||
background-size: cover; | ||
clip-path: circle(50%); | ||
image-rendering: crisp-edges; | ||
height: 170px; | ||
width: 170px; | ||
overflow: visible; | ||
background-size: cover; | ||
clip-path: circle(50%); | ||
image-rendering: crisp-edges; | ||
} | ||
|
||
.logowrapper { | ||
margin-top: 20px; | ||
box-shadow: 0px 0px 70px #ffffff73; | ||
border-radius: 50%; | ||
transition: 0.3s ease-in-out; | ||
margin-top: 20px; | ||
|
||
border-radius: 50%; | ||
transition: 0.3s ease-in-out; | ||
} | ||
|
||
.text-field { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
flex-direction: column; | ||
margin: 0; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
flex-direction: column; | ||
margin: 0; | ||
} | ||
|
||
.text-field h2 { | ||
font-size: 27px; | ||
font-size: 27px; | ||
} | ||
|
||
.text-field p { | ||
opacity: 0.7; | ||
opacity: 0.7; | ||
} | ||
|
||
.socials { | ||
display: flex; | ||
flex-direction: row; | ||
align-items: center; | ||
justify-content: space-around; | ||
width: 70%; | ||
font-size: 25px; | ||
opacity: 0; | ||
display: flex; | ||
flex-direction: row; | ||
align-items: center; | ||
justify-content: space-around; | ||
width: 70%; | ||
font-size: 25px; | ||
opacity: 0; | ||
} | ||
|
||
.socials a { | ||
color: #ffffff; | ||
opacity: 0.8; | ||
color: #ffffff; | ||
opacity: 0.8; | ||
} | ||
|
||
.socials a:hover { | ||
color: #ffffff; | ||
opacity: 1; | ||
scale: 1.05; | ||
text-decoration: none; | ||
color: #ffffff; | ||
opacity: 1; | ||
scale: 1.05; | ||
text-decoration: none; | ||
} | ||
|
||
.card-container:hover .logowrapper{ | ||
box-shadow: 0px 0px 90px #ffffff73; | ||
.card-container:hover .logowrapper { | ||
box-shadow: 0px 0px 20px #ffffff3e; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
|
||
import React from "react"; | ||
|
||
|
||
const Intro = () => { | ||
return ( | ||
<div className="container max-w-full md:max-w-[70%] relative m-auto flex flex-col max-h-screen text-our_white pt-10 pb-14 gap-[20px] max-sm:scale-90 z-10"> | ||
<div className="flex flex-col gap-[42px]"> | ||
<div className="w-[100px] h-[5px] bg-gradient-to-r from-blue-500 to-purple-500"></div> | ||
<p | ||
data-aos="fade-up" | ||
data-aos-duration="1100" | ||
className="tracking-wide text-[28px] font-[500] max-lg:text-[28px] max-md:text-[28px] w-full text-left max-w-[90w] lg:max-w-[60vw] text" | ||
> | ||
Hack for Tomorrow is a vibrant hackathon that empowers young | ||
innovators to create impactful solutions. Join us to collaborate, | ||
learn, and showcase your skills in a dynamic, tech-driven environment. | ||
</p> | ||
</div> | ||
</div> | ||
); | ||
|
||
}; | ||
|
||
export default Intro; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters