web client v0.9 (restaurant view)

This commit is contained in:
2020-10-04 17:24:36 +02:00
parent 21ea3f821e
commit b3ade3de7d
15 changed files with 456 additions and 36 deletions

View File

@@ -125,3 +125,62 @@
.editRestaurant-dish:hover {
background-color: #3b3b3b;
}
.editSubscription-tab {
padding: 16px;
display: flex;
flex-flow: column;
align-items: center;
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: 18px;
}
.subscription-card {
background-color: #242424;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
min-width: 260px;
max-width: 300px;
border-radius: 8px;
h1 {
font-weight: 200;
}
h2 {
font-weight: 300;
font-size: 1.2rem;
color: #c0c0c0;
}
p {
font-weight: 400;
font-size: 14px;
padding-left: 16px;
padding-right: 16px;
color: #838383;
}
}