80 lines
1.1 KiB
SCSS
80 lines
1.1 KiB
SCSS
.dish-container {
|
|
min-width: 70%;
|
|
min-height: 600px;
|
|
max-height: 80vh;
|
|
max-width: 80%;
|
|
background-color: #1f1f1f;
|
|
border-radius: 15px;
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
hr {
|
|
border: solid 1px $dark-gray;
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
|
|
.dish-left {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.dish-hero {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-top-left-radius: 15px;
|
|
border-bottom-left-radius: 15px;
|
|
background-size: cover;
|
|
background-position: center;
|
|
text-align: left;
|
|
}
|
|
|
|
.button-container {
|
|
position: relative;
|
|
top: 18px;
|
|
left: 18px;
|
|
background-color: #d68000;
|
|
width: fit-content;
|
|
border-radius: 30px;
|
|
}
|
|
|
|
.dish-info {
|
|
h1 {
|
|
font-weight: 200;
|
|
color: $gray;
|
|
}
|
|
}
|
|
|
|
.dish-content {
|
|
h5 {
|
|
font-size: 1rem;
|
|
font-weight: 300;
|
|
margin: 0 0 0 auto;
|
|
}
|
|
p {
|
|
color: $gray;
|
|
margin: 0 auto 0 0;
|
|
font-weight: 500;
|
|
}
|
|
}
|
|
|
|
.dish-pictograms {
|
|
width: fit-content;
|
|
margin: auto;
|
|
}
|
|
|
|
.dish-row {
|
|
margin-top: 18px;
|
|
margin-bottom: 18px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.dish-row-column {
|
|
margin-top: 12px;
|
|
margin-bottom: 12px;
|
|
h5 {
|
|
margin-bottom: 4px;
|
|
}
|
|
}
|