45 lines
566 B
CSS
45 lines
566 B
CSS
.recipe-card {
|
|
justify-self: stretch;
|
|
}
|
|
|
|
.recipe-image {
|
|
width: 100%;
|
|
max-height: 200px;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.info-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
row-gap: 10px;
|
|
}
|
|
|
|
.info-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.title {
|
|
margin-block: 0;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.star-info {
|
|
display: flex;
|
|
column-gap: 5px;
|
|
align-items: center;
|
|
}
|
|
|
|
.star {
|
|
color: var(--primary-yellow);
|
|
}
|
|
|
|
.user-info {
|
|
display: flex;
|
|
column-gap: 5px;
|
|
}
|
|
|
|
.user-icon {
|
|
color: var(--primary-red);
|
|
}
|