JoJo_English_Buddy / Swipercomponent.css
PeterPinetree's picture
Create Swipercomponent.css
48c9288 verified
raw
history blame
680 Bytes
.swiper-container {
width: 100%;
padding-top: 20px;
padding-bottom: 20px;
}
.swiper {
width: 80%;
max-width: 600px;
}
.swiper-slide {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: #fff;
border-radius: 10px;
padding: 20px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.avatar-image {
width: 150px;
height: 150px;
object-fit: contain;
}
.avatar-info {
text-align: center;
margin-top: 10px;
}
h3 {
font-size: 20px;
margin: 5px 0;
}
p {
font-size: 14px;
color: #666;
}
em {
font-size: 14px;
font-style: italic;
color: #444;
}