Files
menui_web/src/styles/DishList.scss
2021-02-06 15:25:31 +01:00

110 lines
1.8 KiB
SCSS

h4 {
font-weight: 400;
margin-left: 1rem;
}
.carddish-container {
background-color: #303030;
border-radius: 24px;
margin: 2px auto 2px auto;
padding: 8px;
display: flex;
justify-content: space-between;
width: 95%;
cursor: pointer;
transition: all 0.2s;
h2 {
font-weight: 500;
color: $main-color;
margin-top: 1rem;
}
&:hover {
background-color: #3a3a3a;
}
}
.carddish-img {
background-color: $secondary-color;
background-size: cover;
background-position: center;
width: 100px;
height: 100px;
border-radius: 20px;
margin: 0px 12px 0px 0px;
}
.lunch-carddish-img {
background-color: $secondary-color;
background-size: cover;
background-position: center;
width: 60px;
height: 60px;
border-radius: 14px;
margin: 0px 12px 0px 0px;
}
.carddish-left {
display: flex;
h2 {
font-size: 18px;
font-weight: 400;
margin: auto;
}
p {
font-size: 12px;
font-weight: 400;
margin-left: auto;
color: #c9c9c9;
}
h3{
margin: auto 12px auto 12px;
}
}
.carddish-left-info {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.carddish-left-middle {
margin-top: 10px;
p {
margin: auto;
margin-bottom: 3px;
}
}
.carddish-right {
display: flex;
flex-direction: column;
margin-right: 5px;
align-items: flex-end;
justify-content: space-between;
h5 {
font-weight: 500;
font-size: 14px;
margin-top: 4px;
}
}
.lunch-carddish-right{
display: flex;
flex-direction: column;
margin-right: 5px;
align-items: flex-end;
justify-content: center;
}
.carddish-prices-multi {
margin-right: 6px;
margin-top: 6px;
text-align: end;
h5 {
font-size: 14px;
font-weight: 400;
margin-top: 0;
margin-bottom: 4px;
}
}