initial commit

This commit is contained in:
shafin-r
2025-07-03 01:50:10 +06:00
commit 913ec11bc7
49 changed files with 6784 additions and 0 deletions

View File

@ -0,0 +1,119 @@
.gallery {
height: 200px;
width: 100%;
border: 1px solid #113768;
border-radius: 25px;
position: relative;
overflow: hidden;
}
.scrollContainer {
display: flex;
height: 100%;
overflow-x: auto;
scroll-behavior: smooth;
scroll-snap-type: x mandatory;
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* Internet Explorer 10+ */
}
.scrollContainer::-webkit-scrollbar {
display: none; /* WebKit */
}
.slide {
min-width: calc(100% - 72px);
display: flex;
justify-content: center;
align-items: center;
scroll-snap-align: start;
padding: 0 36px;
}
.link {
text-decoration: none;
color: inherit;
width: 100%;
}
.facebook {
flex: 1;
display: flex;
justify-content: space-between;
flex-direction: row;
height: 100%;
background-color: #fff;
border-radius: 25px;
padding: 20px;
box-sizing: border-box;
}
.facebookOne {
font-family: 'Montserrat', sans-serif;
font-weight: 900;
color: #113768;
font-size: 20px;
margin: 0;
}
.facebookTwo {
font-family: 'Montserrat', sans-serif;
font-weight: 600;
color: #113768;
font-size: 13px;
margin: 0;
}
.pagination {
display: flex;
flex-direction: row;
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
}
.dot {
width: 10px;
height: 10px;
border-radius: 5px;
margin: 0 5px;
}
.activeDot {
background-color: #113768;
}
.inactiveDot {
background-color: #ccc;
}
.textView {
width: 60%;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.logoView {
width: 40%;
display: flex;
justify-content: flex-end;
align-items: flex-end;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.slide {
min-width: calc(100% - 40px);
padding: 0 20px;
}
.facebookOne {
font-size: 18px;
}
.facebookTwo {
font-size: 12px;
}
}