bl-frontend-rs/css/service_card.css

114 lines
2.2 KiB
CSS
Raw Normal View History

2023-04-10 13:25:04 +00:00
.service-card-container {
display: flex;
flex-direction: column;
justify-content: space-evenly;
2023-04-10 13:25:04 +00:00
align-items: center;
padding: 10px;
2023-04-10 13:25:04 +00:00
background-color: white;
border-radius: 20px;
box-shadow: -10px 30px 70px rgba(219, 222, 225, 0.4);
width: clamp(300px, 50vw, 350px);
height: 420px;
}
.service-card-icon {
width: 75px;
height: 75px;
border-radius: 100%;
display: flex;
justify-content: center;
align-items: center;
color: white;
font-size: 24px;
}
.service-card-title {
font-family: Poppins;
font-size: 24px;
text-align: center;
font-weight: 600;
}
.service-card-description {
font-family: Poppins;
font-size: 17px;
font-weight: 400;
color: #6B6B6B;
line-height: 28px;
text-align: center;
}
.service-card-button {
color: #4C40F7;
background-color: #F3F4F6;
width: 50px;
height: 50px;
border-radius: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.service-card-container-selected {
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
padding: 10px;
border-radius: 20px;
box-shadow: -10px 30px 70px rgba(219, 222, 225, 0.4);
background-color: #4C40F7;
width: 60vw;
height: 420px;
}
.service-card-icon-selected {
width: 75px;
height: 75px;
border-radius: 100%;
background-color: white;
color: #4C40F7;
filter: drop-shadow(0px 15px 30px #17134a);
display: flex;
justify-content: center;
align-items: center;
font-size: 24px;
}
.service-card-title-selected {
font-family: Poppins;
font-size: 24px;
text-align: center;
font-weight: 600;
color: white;
}
.service-card-description-selected {
font-family: Poppins;
font-size: 17px;
font-weight: 400;
color: white;
line-height: 28px;
text-align: center;
}
.service-card-button-selected {
color: #4C40F7;
background-color: #F3F4F6;
width: 50px;
height: 50px;
border-radius: 100%;
display: flex;
justify-content: center;
align-items: center;
}
@media only screen and (min-width: 750px) {
.service-card-container {
width: 23vw;
height: 400px;
}
2023-04-10 13:25:04 +00:00
}