91 lines
1.4 KiB
CSS
91 lines
1.4 KiB
CSS
html, body {
|
|
margin:0;
|
|
|
|
}
|
|
|
|
.container {
|
|
width: 100vw;
|
|
height: 10vh;
|
|
|
|
}
|
|
|
|
.swiper {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.swiper-slide {
|
|
display: flex;
|
|
overflow: hidden;
|
|
border-radius: 10px;
|
|
/* box-shadow: 0 4px 8px rgba(9, 9, 9, 0.4); */
|
|
}
|
|
|
|
.swiper-slide img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
}
|
|
|
|
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.featured-projects-section {
|
|
width: 70%;
|
|
height: 70%;
|
|
margin: 0 auto;
|
|
margin-top: 10px;
|
|
padding: 10px 0;
|
|
}
|
|
|
|
.project-title {
|
|
font-size: 26px;
|
|
margin-bottom: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.project-container {
|
|
display: flex;
|
|
|
|
}
|
|
|
|
.image-slider .swiper-slide img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.info-slider .swiper-slide {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: flex-start;
|
|
text-align: left;
|
|
padding: 0px;
|
|
background-color: #ffffff;
|
|
/* border-radius: 10px; */
|
|
/* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
|
|
width: 100%;
|
|
}
|
|
|
|
.info-slider .swiper-slide h3 {
|
|
font-size: 24px;
|
|
margin-bottom: 10px;
|
|
color: #333;
|
|
}
|
|
|
|
.info-slider .swiper-slide p {
|
|
font-size: 16px;
|
|
color: #555;
|
|
}
|
|
|
|
|
|
.project-container .swiper {
|
|
margin-top: 30px;
|
|
width: 100%;
|
|
height: 500px;
|
|
} |