Merge branch 'main' into test
This commit is contained in:
commit
fa91fc787f
BIN
Assets/Images/unlockcarrer/competitions.png
Normal file
BIN
Assets/Images/unlockcarrer/competitions.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 74 KiB |
BIN
Assets/Images/unlockcarrer/internship.png
Normal file
BIN
Assets/Images/unlockcarrer/internship.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 62 KiB |
BIN
Assets/Images/unlockcarrer/jobs.png
Normal file
BIN
Assets/Images/unlockcarrer/jobs.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 39 KiB |
BIN
Assets/Images/unlockcarrer/mentorship.png
Normal file
BIN
Assets/Images/unlockcarrer/mentorship.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 45 KiB |
BIN
Assets/Images/unlockcarrer/more.png
Normal file
BIN
Assets/Images/unlockcarrer/more.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 41 KiB |
BIN
Assets/Images/unlockcarrer/practice.png
Normal file
BIN
Assets/Images/unlockcarrer/practice.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 48 KiB |
181
banner.html
Normal file
181
banner.html
Normal file
@ -0,0 +1,181 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Skill Card</title>
|
||||
<style>
|
||||
body {
|
||||
font-family: 'Arial', sans-serif;
|
||||
background-color: #f8f8f8;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100vh;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.card {
|
||||
display: flex;
|
||||
width: 1200px;
|
||||
background-color: #fff;
|
||||
border-radius: 20px;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
|
||||
transition: transform 0.3s, box-shadow 0.3s;
|
||||
}
|
||||
|
||||
.card:hover {
|
||||
transform: translateY(-10px);
|
||||
box-shadow: 0 20px 40px rgba(0,0,0,0.2);
|
||||
}
|
||||
|
||||
.card-left {
|
||||
flex: 1;
|
||||
background-color: #FFD966;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.card-left img {
|
||||
width: 80%;
|
||||
border-radius: 15px;
|
||||
}
|
||||
|
||||
/* Optional: floating icons */
|
||||
.icon {
|
||||
position: absolute;
|
||||
background: white;
|
||||
border-radius: 50%;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
font-weight: bold;
|
||||
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
|
||||
animation: float 3s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.icon1 { top: 20%; left: 10%; animation-delay: 0s;}
|
||||
.icon2 { top: 10%; right: 15%; animation-delay: 0.5s;}
|
||||
.icon3 { bottom: 20%; left: 20%; animation-delay: 1s;}
|
||||
.icon4 { bottom: 15%; right: 10%; animation-delay: 1.5s;}
|
||||
|
||||
@keyframes float {
|
||||
0%, 100% { transform: translateY(0);}
|
||||
50% { transform: translateY(-10px);}
|
||||
}
|
||||
|
||||
.card-right {
|
||||
flex: 1;
|
||||
padding: 40px 30px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.card-right h2 {
|
||||
font-size: 2em;
|
||||
color: #0b2e6f;
|
||||
margin: 0 0 20px 0;
|
||||
}
|
||||
|
||||
.card-right p {
|
||||
font-size: 1em;
|
||||
color: #555;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.features {
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.feature {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
font-size: 0.95em;
|
||||
color: #555;
|
||||
}
|
||||
|
||||
.feature span {
|
||||
background: #FFD966;
|
||||
border-radius: 50%;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 14px;
|
||||
color: #0b2e6f;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.card-right button {
|
||||
background-color: #0b2e6f;
|
||||
color: white;
|
||||
border: none;
|
||||
padding: 8px 18px; /* controls height and width */
|
||||
border-radius: 25px;
|
||||
font-size: 0.9em;
|
||||
width: auto; /* ensures it doesn't stretch */
|
||||
max-width: 155px; /* optional limit */
|
||||
display: inline-block; /* prevents flex from stretching it */
|
||||
cursor: pointer;
|
||||
transition: background 0.3s;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.card-right button:hover {
|
||||
background-color: #1d4fa0;
|
||||
}
|
||||
|
||||
@media (max-width: 900px) {
|
||||
.card {
|
||||
flex-direction: column;
|
||||
width: 90%;
|
||||
}
|
||||
|
||||
.card-right {
|
||||
padding: 80px 50px; /* more top/bottom space increases height */
|
||||
}
|
||||
|
||||
.card-left img {
|
||||
width: 90%;
|
||||
max-height: 100%; /* image takes more vertical space */
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="card">
|
||||
<div class="card-left">
|
||||
<img src="/home/rajesh/Downloads/Gemini_Generated_Image_u81x8ju81x8ju81x.png" alt="Student Image">
|
||||
<!-- Floating icons -->
|
||||
<!-- <div class="icon icon1">AWS</div>
|
||||
<div class="icon icon2">SQL</div>
|
||||
<div class="icon icon3">C++</div>
|
||||
<div class="icon icon4">Python</div> -->
|
||||
</div>
|
||||
<div class="card-right">
|
||||
<h2>Learn & Level Up Your Skills</h2>
|
||||
<p>Select from a wide range of courses to upskill and advance your career!</p>
|
||||
<div class="features">
|
||||
<div class="feature"><span>✓</span>50+ Courses</div>
|
||||
<div class="feature"><span>✓</span>Certificate</div>
|
||||
<div class="feature"><span>✓</span>Projects & Assignments</div>
|
||||
</div>
|
||||
<button>Explore Courses</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
102
index.html
102
index.html
@ -250,15 +250,101 @@
|
||||
<button class="nav-button next-btn" id="nextBtn" aria-label="Next slide"></button>
|
||||
</div>
|
||||
</section>
|
||||
<section id="slide">
|
||||
<section class="hover-slider">
|
||||
<div class="container-slider">
|
||||
<div class="container-slider-baby container-slider-1"></div>
|
||||
<div class="container-slider-baby container-slider-2"></div>
|
||||
<div class="container-slider-baby container-slider-3"></div>
|
||||
<div class="container-slider-baby container-slider-4"></div>
|
||||
<section class="move-slider-ruby">
|
||||
<div class="move-slider-container">
|
||||
<div class="move-slider-box-static">
|
||||
<div class="slide-content-static">
|
||||
<h1 class="slide-static-h1"> Kodepilot </h1>
|
||||
<p class="slide-static-text">
|
||||
Helping the world withcreative
|
||||
</p>
|
||||
<p class="slide-static-text">
|
||||
designs
|
||||
</p>
|
||||
<p class="slide-static-footer">
|
||||
92% Client Retention
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<div class="move-slider-animation-box">
|
||||
<div class="move-slider-box">
|
||||
<div class="slide-content">
|
||||
<p class="slide-text-cot">
|
||||
"
|
||||
</p>
|
||||
<p class="slide-text">
|
||||
"From farm inventory to eco-shipment tracking, OpsMonsters built us a green-tech backbone.
|
||||
Their system lets us trace every organic ingredient and prove our sustainability story to
|
||||
conscious customers."
|
||||
</p>
|
||||
<div class="slide-logo-box">
|
||||
<div class="profile-box">
|
||||
<img src="https://images.unsplash.com/photo-1542744094-24638eff58bb?w=500&h=400&fit=crop&crop=entropy&cs=tinysrgb"
|
||||
alt="Client Logo" class="slide-logo">
|
||||
<div class="profile-info">
|
||||
<p class="slide-name">John Doe</p>
|
||||
<p class="slide-role">CEO</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="move-slider-box">
|
||||
<div class="slide-content">
|
||||
<p class="slide-text-cot">
|
||||
"
|
||||
</p>
|
||||
<p class="slide-text">
|
||||
"OpsMonsters understood our mission: simple, honest, organic. They delivered a clean,
|
||||
lightning-fast e-commerce engine that scales with our growth."
|
||||
</p>
|
||||
<div class="slide-logo-box">
|
||||
<div class="profile-box">
|
||||
<img src="https://images.unsplash.com/photo-1542744094-24638eff58bb?w=500&h=400&fit=crop&crop=entropy&cs=tinysrgb"
|
||||
alt="Client Logo" class="slide-logo">
|
||||
<div class="profile-info">
|
||||
<p class="slide-name">John Doe</p>
|
||||
<p class="slide-role">CEO</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Slide 3 -->
|
||||
<div class="move-slider-box">
|
||||
<div class="slide-content">
|
||||
<p class="slide-text-cot">
|
||||
"
|
||||
</p>
|
||||
<p class="slide-text">
|
||||
"Loan processing used to take weeks. OpsMonsters’ smart engine made approvals happen in days
|
||||
without compromising security."
|
||||
</p>
|
||||
<div class="slide-logo-box">
|
||||
<div class="profile-box">
|
||||
<img src="https://images.unsplash.com/photo-1542744094-24638eff58bb?w=500&h=400&fit=crop&crop=entropy&cs=tinysrgb"
|
||||
alt="Client Logo" class="slide-logo">
|
||||
<div class="profile-info">
|
||||
<p class="slide-name">John Doe</p>
|
||||
<p class="slide-role">CEO</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="move-slider">
|
||||
<div class="container-slider">
|
||||
<div class="container-slider-baby container-slider-1"></div>
|
||||
<div class="container-slider-baby container-slider-2"></div>
|
||||
<div class="container-slider-baby container-slider-3"></div>
|
||||
<div class="container-slider-baby container-slider-4"></div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="our-numbers">
|
||||
|
||||
175
main.css
175
main.css
@ -209,6 +209,7 @@
|
||||
margin: 0;
|
||||
flex: 1 1 352px;
|
||||
max-height: 100px;
|
||||
width: 342px;
|
||||
}
|
||||
|
||||
.crd img {
|
||||
@ -229,7 +230,6 @@
|
||||
|
||||
.crd p {
|
||||
-webkit-line-clamp: 2;
|
||||
/* show max 2 lines */
|
||||
-webkit-box-orient: vertical;
|
||||
font-size: 12px;
|
||||
line-height: 140%;
|
||||
@ -338,6 +338,11 @@
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.nameContainer {
|
||||
display: block;
|
||||
text-align: start;
|
||||
}
|
||||
|
||||
.stat-number {
|
||||
display: block;
|
||||
font-size: clamp(1.8rem, 2.5vw, 3rem);
|
||||
@ -1128,4 +1133,172 @@
|
||||
.action-buttons {
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
|
||||
.move-slider-ruby {
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
background: #fff;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.move-slider-box-static {
|
||||
background: #1e90ff;
|
||||
height: 350px;
|
||||
min-width: 350px;
|
||||
border-radius: 10px;
|
||||
padding: 24px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
gap: 10px;
|
||||
z-index: 9;
|
||||
}
|
||||
|
||||
.slide-static-text {
|
||||
color: #fff;
|
||||
line-height: 3px;
|
||||
}
|
||||
|
||||
.slide-static-footer {
|
||||
color: #fff;
|
||||
font-size: 25px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.slide-static-h1 {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.slide-content-static {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.move-slider-container {
|
||||
display: flex;
|
||||
overflow: hidden;
|
||||
max-width: 1200px;
|
||||
}
|
||||
|
||||
.move-slider-animation-box {
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
animation: scroll 20s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes scroll {
|
||||
from {
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
to {
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.move-slider-box {
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
.move-slider-box {
|
||||
flex: 1 0 30%;
|
||||
background: #fff;
|
||||
border-radius: 12px;
|
||||
padding: 20px;
|
||||
min-width: 350px;
|
||||
}
|
||||
|
||||
.move-slider-box .slide-content>*:not(.slide-text) {
|
||||
transition: opacity 0.3s ease 0s;
|
||||
}
|
||||
|
||||
.move-slider-box:hover .slide-content>*:not(.slide-text) {
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.move-slider-box .slide-text {
|
||||
opacity: 1;
|
||||
transform: translateY(0) scale(1);
|
||||
transition: transform 0.6s ease 0.5s, opacity 0.6s ease 0.5s;
|
||||
}
|
||||
|
||||
.move-slider-box:hover .slide-text {
|
||||
transform: translateY(100px) scale(1.1);
|
||||
}
|
||||
|
||||
.slide-content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
justify-content: start;
|
||||
}
|
||||
|
||||
.slide-text-cot {
|
||||
font-size: 40px;
|
||||
font-weight: bold;
|
||||
color: red;
|
||||
}
|
||||
|
||||
.slide-text-cot,
|
||||
.slide-text {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
.slide-logo-box {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: flex-end;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.profile-box {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-direction: row;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.profile-info {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.slide-logo {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
object-fit: cover;
|
||||
border-radius: 50%;
|
||||
border: 3px solid #fff;
|
||||
}
|
||||
|
||||
.slide-name {
|
||||
font-weight: bold;
|
||||
font-size: 16px;
|
||||
color: #333;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.slide-role {
|
||||
font-size: 14px;
|
||||
color: #666;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.slide-text {
|
||||
font-size: 20px;
|
||||
color: #333;
|
||||
margin-bottom: 20px;
|
||||
line-height: 1.5;
|
||||
margin-top: -23px;
|
||||
}
|
||||
25
main.js
25
main.js
@ -189,3 +189,28 @@ function goToLogin() {
|
||||
|
||||
new Slide1rSlider();
|
||||
})();
|
||||
|
||||
document.addEventListener("DOMContentLoaded", () => {
|
||||
const track = document.querySelector(".move-slider-track");
|
||||
const boxes = Array.from(track.children);
|
||||
|
||||
// Clone all slides once
|
||||
boxes.forEach(box => {
|
||||
const clone = box.cloneNode(true);
|
||||
track.appendChild(clone);
|
||||
});
|
||||
|
||||
let position = 0;
|
||||
const speed = 1; // pixels per frame, adjust for faster/slower scroll
|
||||
|
||||
function animate() {
|
||||
position -= speed;
|
||||
if (Math.abs(position) >= track.scrollWidth / 2) {
|
||||
position = 0; // reset after first set slides out
|
||||
}
|
||||
track.style.transform = `translateX(${position}px)`;
|
||||
requestAnimationFrame(animate);
|
||||
}
|
||||
|
||||
animate();
|
||||
});
|
||||
|
||||
Loading…
Reference in New Issue
Block a user