pkg-components
Version:
55 lines (47 loc) • 930 B
CSS
.ContentQuery {
height: 200px;
padding: 10px;
}
.containerCard {
border-bottom: 5px solid var(--color-primary-red);
border-radius: 10px;
border: 1px solid var(--color-primary-disabled);
cursor: pointer;
display: flex;
height: 90%;
transition: all .2s linear;
width: 100%;
}
.containerCard:hover {
box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
transform: scale(1.02);
}
.cardnumber {
font-size: 16px;
}
.card {
width: 50%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
font-family: 'PFont-Light';
padding: 20px;
color: #272323;
margin-bottom: 10px;
}
.cardContentPrice {
display: block;
}
.cardTitle,
.cardPrice {
font-size: 16px;
justify-content: space-between;
align-items: center;
display: flex;
flex-wrap: nowrap;
}
.cardTitle span {
font-size: 20px;
font-weight: 700;
}