225 lines
3.7 KiB
SCSS
225 lines
3.7 KiB
SCSS
.editRestaurant-container {
|
|
min-width: 70%;
|
|
min-height: 600px;
|
|
max-height: 80vh;
|
|
max-width: 80%;
|
|
background-color: $dark-gray;
|
|
border-radius: 15px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.editRestaurant-menu {
|
|
width: 100%;
|
|
border-radius: 15px 0px 0px 15px;
|
|
background-color: #323232;
|
|
max-width: 280px;
|
|
color: #c0c0c0;
|
|
}
|
|
|
|
.editRestaurant-title {
|
|
font-weight: 300;
|
|
}
|
|
|
|
.editRestaurant-tab {
|
|
padding: 16px;
|
|
display: flex;
|
|
flex-flow: column;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 100%;
|
|
overflow: auto;
|
|
h3 {
|
|
font-weight: 400;
|
|
}
|
|
}
|
|
|
|
.editRestaurant-doubleColumn {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
|
|
.editRestaurant-bottom {
|
|
align-self: flex-end;
|
|
}
|
|
|
|
.editRestaurant-fullWidth {
|
|
padding: 0px 16px 0px 16px;
|
|
grid-column-start: 1;
|
|
grid-column-end: 3;
|
|
}
|
|
|
|
.editRestaurant-sectiontitle {
|
|
grid-column-start: 1;
|
|
grid-column-end: 3;
|
|
margin-bottom: 16px;
|
|
width: 100%;
|
|
}
|
|
|
|
.workingHours-container {
|
|
border: 1px solid #1f1f1f;
|
|
border-radius: 6px;
|
|
padding-top: 12px;
|
|
padding-bottom: 12px;
|
|
padding-left: 8px;
|
|
}
|
|
|
|
.workingHours-day {
|
|
display: grid;
|
|
grid-template-columns: 1fr 3fr 1fr;
|
|
h5 {
|
|
align-self: center;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
margin: auto 6px auto 6px;
|
|
}
|
|
}
|
|
|
|
.editRestaurant-addCategory {
|
|
display: flex;
|
|
align-items: center;
|
|
padding-left: 8px;
|
|
padding-right: 8px;
|
|
}
|
|
|
|
.editRestaurant-categorySpan {
|
|
flex-grow: 10;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
h5 {
|
|
font-weight: 300;
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
|
|
.editRestaurant-dish {
|
|
background-color: #323232;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin: 0px 8px 0px 8px;
|
|
padding: 4px;
|
|
border-radius: 5px;
|
|
h3 {
|
|
font-size: 15px;
|
|
margin-left: 14px;
|
|
}
|
|
}
|
|
|
|
.editRestaurant-dishImg {
|
|
height: 60px;
|
|
width: 60px;
|
|
border-radius: 5px;
|
|
background-size: cover;
|
|
}
|
|
|
|
.editRestaurant-dishLeft {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
|
|
.editRestaurant-dish:hover {
|
|
background-color: #3b3b3b;
|
|
}
|
|
|
|
.editSubscription-tab {
|
|
padding: 16px;
|
|
display: flex;
|
|
flex-flow: column;
|
|
align-items: center;
|
|
height: 100%;
|
|
width: 100%;
|
|
overflow: auto;
|
|
}
|
|
|
|
.subscription-text {
|
|
display: flex;
|
|
background-color: #242424;
|
|
width: 100%;
|
|
justify-content: space-between;
|
|
border-radius: 8px;
|
|
h3 {
|
|
font-weight: 300;
|
|
padding-left: 14px;
|
|
}
|
|
h5 {
|
|
color: #c0c0c0;
|
|
font-weight: 400;
|
|
padding-right: 14px;
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
|
|
.subscription-cards {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
margin-top: 48px;
|
|
}
|
|
|
|
.subscription-card {
|
|
background-color: #474747;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 220px;
|
|
border-radius: 18px;
|
|
box-shadow: #0000002d 2px 2px 5px;
|
|
h1 {
|
|
font-weight: 500;
|
|
margin-left: 8px;
|
|
font-size: 1.5rem;
|
|
}
|
|
h2 {
|
|
font-weight: 400;
|
|
font-size: 1.1rem;
|
|
color: #c0c0c0;
|
|
}
|
|
p {
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
padding-left: 16px;
|
|
padding-right: 16px;
|
|
color: $secondary-color;
|
|
}
|
|
transition: background-color 0.2s;
|
|
}
|
|
|
|
.subscription-card:hover {
|
|
cursor: pointer;
|
|
background-color: #575757;
|
|
}
|
|
|
|
.subscription-desc {
|
|
background-color: #333333;
|
|
height: 100px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.subscription-title {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.editRestaurant-settings {
|
|
display: flex;
|
|
background-color: #222222;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
border: 1px solid #1f1f1f;
|
|
border-radius: 6px;
|
|
padding: 12px;
|
|
margin-top: 12px;
|
|
margin-bottom: 12px;
|
|
h4 {
|
|
font-size: 14px;
|
|
color: #c0c0c0;
|
|
}
|
|
}
|