36 lines
618 B
CSS
36 lines
618 B
CSS
.item-description{
|
|
display: flex;
|
|
justify-content: space-between; /* Elemente an gegenüberliegenden Seiten platzieren */
|
|
align-items: center; /* Vertikale Zentrierung */
|
|
width: 100%;
|
|
}
|
|
|
|
.item-card-button{
|
|
color: green;
|
|
}
|
|
|
|
.rating-card-body{
|
|
display: grid;
|
|
align-items: center; /* Vertikale Zentrierung */
|
|
width: 100%;
|
|
gap: 30px;
|
|
}
|
|
|
|
.rating-button{
|
|
max-width: 200px;
|
|
}
|
|
|
|
.rating-card-box{
|
|
display: grid;
|
|
align-items: center; /* Vertikale Zentrierung */
|
|
gap: 10px;
|
|
width: 100%;
|
|
}
|
|
|
|
.rating-text-field{
|
|
background-color: whitesmoke;
|
|
}
|
|
|
|
.vw20 {
|
|
width: 20vw;
|
|
} |