Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Saipradyumnagoud committed Jun 16, 2024
2 parents aa6f7af + 6869e5f commit e669a35
Show file tree
Hide file tree
Showing 16 changed files with 1,597 additions and 390 deletions.
4 changes: 4 additions & 0 deletions csedge.courses/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,11 @@ footer {
.footer-links li a {
text-decoration: none;
color: #f5f5f5;

}

.footer-links li a:hover {
text-decoration: underline;
}

.footer-contact {
Expand Down
81 changes: 78 additions & 3 deletions home.css
Original file line number Diff line number Diff line change
Expand Up @@ -264,10 +264,19 @@ section {
object-fit: cover;
}









/* Styles for Internship */
#internship {
padding: 50px 20px;
background: linear-gradient(135deg, #f3f2ee 0%, #f9f6f6 100%);
transition: background-color 0.3s ease; /* Add transition for background color change */
}

/* Dark mode styles for #internship section */
Expand All @@ -284,13 +293,13 @@ body.dark-mode #internship {
text-transform: uppercase;
letter-spacing: 2px;
font-family: Arial, sans-serif;
transition: color 0.3s ease; /* Add transition for text color change */
}

body.dark-mode .section-heading{
color: white;
}


.internship-program {
display: flex;
flex-wrap: wrap;
Expand All @@ -313,6 +322,7 @@ body.dark-mode .section-heading{
transition: transform 0.3s ease, box-shadow 0.3s ease;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(230, 230, 230, 0.9) 100%);
position: relative;
overflow: hidden;
}

body.dark-mode .internship-program li{
Expand All @@ -325,6 +335,7 @@ body.dark-mode .internship-program li{
justify-content: center;
margin: 1vw;
}

.internship-program li::before,
.internship-program li::after {
content: "";
Expand Down Expand Up @@ -375,19 +386,70 @@ body.dark-mode .internship-program li{
margin-top: 20px;
font-weight: bold;
text-align: center;
transition: color 0.3s ease; /* Add transition for text color change */
}

.program-duration {
font-size: 20px;
margin-top: 10px;
color: #666;
transition: color 0.3s ease;
transition: color 0.3s ease; /* Add transition for text color change */
}

.internship-program li:hover .program-duration {
color: #007bff;
}

/* Additional styles for interactivity and animations */
.program-buttons {
margin-top: 20px;
opacity: 0; /* Hide buttons by default */
transition: opacity 0.3s ease; /* Add transition for button opacity */
}

.internship-program li:hover .program-buttons {
opacity: 1; /* Show buttons on hover */
}

.program-apply-button {
background-color: #007bff;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
margin: 5px;
transition: background-color 0.3s ease, transform 0.3s ease;
}

.program-apply-button:hover {
background-color: #0056b3;
transform: translateY(-3px);
}

.program-apply-button:active {
background-color: #004494;
}




















.program-description {
font-size: 16px;
line-height: 1.2;
Expand Down Expand Up @@ -956,6 +1018,19 @@ body.dark-mode .faq{
gap: 20px
}














.benefit-icon {
height: auto;
}
Expand Down Expand Up @@ -1011,4 +1086,4 @@ body.dark-mode .faq{
align-items: center;
font-size: medium;
}
}
}
4 changes: 4 additions & 0 deletions home.html
Original file line number Diff line number Diff line change
Expand Up @@ -228,9 +228,13 @@ <h2 class="section-heading" data-aos="fade-up">INTERNSHIPS</h2>
<p class="program-description" data-aos="fade-up">Join our Data Science Internship Program and gain
practical experience in
one of the most in-demand fields. Learn data analysis, machine learning, and statistical modeling.
<<<<<<< HEAD
Develop real-world projects and enhance your skills in data science. Get mentored by industry
professionals and kickstart your career in the field of data science.</p>
</div>
=======
Develop real-world projects and enhance your skills in data science. </p>
>>>>>>> 11dd44abba6d427dbd14757272378d66af253d44
<div class="program-buttons" data-aos="fade-up">
<button class="program-apply-button" data-aos="fade-up">Coming Soon..!</button>
</div>
Expand Down
Loading

0 comments on commit e669a35

Please sign in to comment.