Skip to content

Commit dd44dd6

Browse files
committed
new home page
1 parent 8d580a8 commit dd44dd6

File tree

51 files changed

+2842
-965
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+2842
-965
lines changed

404.html

100755100644
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292

9393
<li class="nav-item">
9494

95-
<a class="nav-link" href="/index.html">Blog</a>
95+
<a class="nav-link" href="/blog">Blog</a>
9696
</li>
9797

9898
<li class="nav-item">
@@ -202,7 +202,9 @@
202202
</div> -->
203203

204204

205-
<div class="container">
205+
206+
<div class="container">
207+
206208

207209
<div id="main-content" class="main-content">
208210
<div class="text-center">

about.html

100755100644
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292

9393
<li class="nav-item">
9494

95-
<a class="nav-link" href="/index.html">Blog</a>
95+
<a class="nav-link" href="/blog">Blog</a>
9696
</li>
9797

9898
<li class="nav-item">
@@ -202,7 +202,9 @@
202202
</div> -->
203203

204204

205-
<div class="container">
205+
206+
<div class="container">
207+
206208

207209
<div id="main-content" class="main-content">
208210
<section>
@@ -270,7 +272,6 @@ <h4>Some users who rely on our work</h4>
270272
<a href="http://ibm.github.io/" title="IBM"> <img src="https://avatars2.githubusercontent.com/u/1459110" width="60px" /></a>
271273
<a href="http://www.smartbear.com" title="SmartBear Software"> <img src="https://avatars2.githubusercontent.com/u/1644671" width="60px" /></a>
272274
<a href="http://nasa.github.io/" title="NASA"> <img src="https://avatars0.githubusercontent.com/u/848102" width="60px" /></a>
273-
<a href="https://github.com/prettier" title="Prettier"> <img src="https://avatars0.githubusercontent.com/u/25822731" width="60px" /></a>
274275
<a href="http://brain.js.org/" title="brain.js"> <img src="https://avatars2.githubusercontent.com/u/23732838" width="60px" /></a>
275276
<a href="https://github.com/aws" title="AWS SDK"> <img src="https://avatars.githubusercontent.com/u/2232217" width="60px" /></a>
276277
<a href="http://www.fda.gov/" title="Food and Drug Administration "> <img src="https://avatars2.githubusercontent.com/u/6471964" width="60px" /></a>

assets/css/main.css

100755100644
File mode changed.

assets/css/main.css.map

100755100644
File mode changed.

assets/css/screen.css

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -970,4 +970,88 @@ iframe {
970970
.highlight-b{
971971
border: 4px solid rebeccapurple;
972972
border-radius: 10px;
973+
}
974+
975+
/* Home page */
976+
.hero-section {
977+
background: url(https://cdn.pixabay.com/photo/2020/06/04/11/10/bulb-5258341_960_720.jpg) no-repeat black;
978+
color: #fff;
979+
min-height: 80vh;
980+
}
981+
982+
/* Trusted By Section */
983+
.trusted-by-section {
984+
overflow: hidden;
985+
padding: 2rem 0;
986+
}
987+
988+
.logo-marquee {
989+
width: 100%;
990+
overflow: hidden;
991+
}
992+
993+
.logo-track {
994+
display: flex;
995+
white-space: nowrap;
996+
will-change: transform; /* Optimize animation */
997+
}
998+
999+
.logo {
1000+
height: 70px; /* Adjust as needed */
1001+
margin: 0 1.5rem;
1002+
flex-shrink: 0;
1003+
}
1004+
1005+
/* Base animation (paused initially) */
1006+
.animate-forward {
1007+
animation: scroll-forward 30s linear infinite;
1008+
}
1009+
1010+
.animate-reverse {
1011+
animation: scroll-reverse 30s linear infinite;
1012+
}
1013+
1014+
@keyframes scroll-forward {
1015+
0% { transform: translateX(0); }
1016+
100% { transform: translateX(-50%); } /* Half for seamless loop */
1017+
}
1018+
1019+
@keyframes scroll-reverse {
1020+
0% { transform: translateX(-50%); }
1021+
100% { transform: translateX(0); }
1022+
}
1023+
1024+
/* 2-Column Layout */
1025+
.two-column-layout {
1026+
padding: 50px 0;
1027+
}
1028+
1029+
.card {
1030+
margin-bottom: 30px;
1031+
}
1032+
1033+
.card-image {
1034+
max-width: 100%;
1035+
height: auto;
1036+
}
1037+
1038+
1039+
.bg-image {
1040+
background-size: cover;
1041+
background-position: center;
1042+
}
1043+
1044+
.card:hover .bg-dark {
1045+
background-color: rgba(0, 0, 0, 0.6) !important; /* Darker overlay on hover */
1046+
}
1047+
1048+
.card:hover {
1049+
transform: scale(1.05); /* Slight zoom */
1050+
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; /* Stronger shadow */
1051+
}
1052+
1053+
@media (max-width: 576px) {
1054+
.card {
1055+
min-height: 150px;
1056+
}
9731057
}

assets/images/fxp-contributors.webp

57.4 KB
Binary file not shown.

assets/images/imglab.webp

22.6 KB
Binary file not shown.

assets/images/matchit.webp

20.5 KB
Binary file not shown.

assets/images/shabdawali.webp

86.9 KB
Binary file not shown.

assets/js/lunrsearchengine.js

100755100644
Lines changed: 38 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)