File tree Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change @@ -350,6 +350,30 @@ html {
350
350
margin-bottom : 10px ;
351
351
}
352
352
353
+ .load-more-btn {
354
+ display : inline-block;
355
+ padding : 10px 24px ;
356
+ font-size : 16px ;
357
+ color : # fff ;
358
+ background-color : # 007acc ;
359
+ border : none;
360
+ border-radius : 6px ;
361
+ text-decoration : none;
362
+ transition : background-color 0.3s ease, transform 0.2s ease;
363
+ cursor : pointer;
364
+ box-shadow : 0 4px 6px rgba (0 , 0 , 0 , 0.1 );
365
+ }
366
+
367
+ .load-more-btn : hover {
368
+ background-color : # 005fa3 ;
369
+ transform : translateY (-2px );
370
+ }
371
+
372
+ .load-more-btn : active {
373
+ background-color : # 004b82 ;
374
+ transform : translateY (0 );
375
+ }
376
+
353
377
/* Footer Section Styling */
354
378
/* CSS */
355
379
.custom-footer {
Original file line number Diff line number Diff line change @@ -130,7 +130,8 @@ <h2 class="showcase-title">Explore Our Projects</h2>
130
130
131
131
<!-- Project Grid where dynamic content will be added -->
132
132
< div id ="project-grid " class ="project-grid "> </ div >
133
- < a href ="# "> Load more</ a >
133
+ < a href ="# " class ="load-more-btn "> Load more</ a >
134
+
134
135
</ div >
135
136
</ section >
136
137
You can’t perform that action at this time.
0 commit comments