Skip to content

Commit 29d886c

Browse files
Solved the pagination issue (#449)
* made some changes in internship section * Solved the pagination problem
1 parent bb55c2d commit 29d886c

File tree

6 files changed

+603
-5
lines changed

6 files changed

+603
-5
lines changed

home.css

Lines changed: 78 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -264,10 +264,19 @@ section {
264264
object-fit: cover;
265265
}
266266

267+
268+
269+
270+
271+
272+
273+
274+
267275
/* Styles for Internship */
268276
#internship {
269277
padding: 50px 20px;
270278
background: linear-gradient(135deg, #f3f2ee 0%, #f9f6f6 100%);
279+
transition: background-color 0.3s ease; /* Add transition for background color change */
271280
}
272281

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

289299
body.dark-mode .section-heading{
290300
color: white;
291301
}
292302

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

318328
body.dark-mode .internship-program li{
@@ -325,6 +335,7 @@ body.dark-mode .internship-program li{
325335
justify-content: center;
326336
margin: 1vw;
327337
}
338+
328339
.internship-program li::before,
329340
.internship-program li::after {
330341
content: "";
@@ -375,19 +386,70 @@ body.dark-mode .internship-program li{
375386
margin-top: 20px;
376387
font-weight: bold;
377388
text-align: center;
389+
transition: color 0.3s ease; /* Add transition for text color change */
378390
}
379391

380392
.program-duration {
381393
font-size: 20px;
382394
margin-top: 10px;
383395
color: #666;
384-
transition: color 0.3s ease;
396+
transition: color 0.3s ease; /* Add transition for text color change */
385397
}
386398

387399
.internship-program li:hover .program-duration {
388400
color: #007bff;
389401
}
390402

403+
/* Additional styles for interactivity and animations */
404+
.program-buttons {
405+
margin-top: 20px;
406+
opacity: 0; /* Hide buttons by default */
407+
transition: opacity 0.3s ease; /* Add transition for button opacity */
408+
}
409+
410+
.internship-program li:hover .program-buttons {
411+
opacity: 1; /* Show buttons on hover */
412+
}
413+
414+
.program-apply-button {
415+
background-color: #007bff;
416+
color: white;
417+
border: none;
418+
padding: 10px 20px;
419+
border-radius: 5px;
420+
cursor: pointer;
421+
margin: 5px;
422+
transition: background-color 0.3s ease, transform 0.3s ease;
423+
}
424+
425+
.program-apply-button:hover {
426+
background-color: #0056b3;
427+
transform: translateY(-3px);
428+
}
429+
430+
.program-apply-button:active {
431+
background-color: #004494;
432+
}
433+
434+
435+
436+
437+
438+
439+
440+
441+
442+
443+
444+
445+
446+
447+
448+
449+
450+
451+
452+
391453
.program-description {
392454
font-size: 16px;
393455
line-height: 1.2;
@@ -956,6 +1018,19 @@ body.dark-mode .faq{
9561018
gap: 20px
9571019
}
9581020

1021+
1022+
1023+
1024+
1025+
1026+
1027+
1028+
1029+
1030+
1031+
1032+
1033+
9591034
.benefit-icon {
9601035
height: auto;
9611036
}
@@ -1011,4 +1086,4 @@ body.dark-mode .faq{
10111086
align-items: center;
10121087
font-size: medium;
10131088
}
1014-
}
1089+
}

home.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,9 +228,13 @@ <h2 class="section-heading" data-aos="fade-up">INTERNSHIPS</h2>
228228
<p class="program-description" data-aos="fade-up">Join our Data Science Internship Program and gain
229229
practical experience in
230230
one of the most in-demand fields. Learn data analysis, machine learning, and statistical modeling.
231+
<<<<<<< HEAD
231232
Develop real-world projects and enhance your skills in data science. Get mentored by industry
232233
professionals and kickstart your career in the field of data science.</p>
233234
</div>
235+
=======
236+
Develop real-world projects and enhance your skills in data science. </p>
237+
>>>>>>> 11dd44abba6d427dbd14757272378d66af253d44
234238
<div class="program-buttons" data-aos="fade-up">
235239
<button class="program-apply-button" data-aos="fade-up">Coming Soon..!</button>
236240
</div>

index.html

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
transition: color 0.3s, background-color 0.3s;
3737
}
3838

39+
<<<<<<< HEAD
3940
.navbar-nav .nav-link:hover {
4041
color: #ffffff;
4142
background-color: rgba(255, 255, 255, 0.2);
@@ -138,6 +139,38 @@
138139
<a class="nav-link active" aria-current="page" href="#!"><i class="fa-solid fa-blog"></i> Blog</a>
139140
</li>
140141
</ul>
142+
=======
143+
<div class="collapse navbar-collapse" id="navbarSupportedContent">
144+
<ul class="navbar-nav ms-auto mb-2 mb-lg-0 flex justify-content-center">
145+
<li class="nav-item me-2">
146+
<a class="nav-link" href="https://csedge.courses"><i class="fa-solid fa-house"></i> Home</a>
147+
</li>
148+
<li class="nav-item me-2">
149+
<a class="nav-link" href="https://csedge.courses/about"> <i class="fa-solid fa-circle-info"></i> About</a>
150+
</li>
151+
<li class="nav-item me-2">
152+
<a class="nav-link" href="https://csedge.courses#contact"
153+
><i class="fa-solid fa-phone"></i> Contact</a
154+
>
155+
</li>
156+
<li class="nav-item me-2">
157+
<a class="nav-link active" aria-current="page" href="#!"><i class="fa-solid fa-blog"></i> Blog</a>
158+
</li>
159+
</ul>
160+
</div>
161+
</div>
162+
</nav>
163+
<!-- Page header with logo and tagline-->
164+
<div class="container" >
165+
<div class="text-center my-5">
166+
<h1 class="fw-bolder" style="margin-top: 80px;">Welcome to CSEdge Learn!</h1>
167+
<p class="lead mb-0">
168+
This website offers straightforward guides and tutorials for
169+
interns, providing clear directions to complete tasks effectively.
170+
Simplify your internship experience with our easy-to-follow articles
171+
and docs.
172+
</p>
173+
>>>>>>> 11dd44abba6d427dbd14757272378d66af253d44
141174
</div>
142175

143176
</div>
@@ -375,7 +408,7 @@ <h2 class="card-title h4">
375408
<a class="page-link" href="#!" tabindex="-1" aria-disabled="true">Previous</a>
376409
</li>
377410
<li class="page-item" aria-current="page">
378-
<a class="page-link" href="#!">1</a>
411+
<a class="page-link" href="./posts/master-docker.html">1</a>
379412
</li>
380413
<li class="page-item"><a class="page-link" href="./posts/master-github.html">2</a></li>
381414
<li class="page-item"><a class="page-link" href="#!">3</a></li>

0 commit comments

Comments
 (0)