-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.css
91 lines (76 loc) · 1.44 KB
/
App.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
.App {
max-width: 70rem;
margin: 0 auto;
padding: 5rem 0;
}
.container {
display: flex;
}
.reservation-container {
width: 20%;
border-right: 0.1rem solid rgba(58, 58, 58, 0.548);
}
.reservation-header {
font-size: 1.5rem;
color: rgb(36, 36, 36);
}
.reservation-cards-container {
min-height: 35rem;
}
.reservation-card-container {
background-color: white;
padding: 0.5rem 1rem;
border-radius: 0.4rem;
box-shadow: 0.1rem 0.1rem 1rem rgba(0, 0, 0, 0.171);
width: 80%;
margin: 1rem 0;
}
.reservation-input-container {
width: 80%;
padding: 0.5rem 1rem;
}
.reservation-input-container input {
width: 100%;
}
.reservation-input-container button {
width: 100%;
}
.customer-food-container {
width: 80%;
display: flex;
flex-direction: column;
}
.customer-food {
display: flex;
}
.customer-food-container p {
margin-right: 1rem;
font-weight: 200;
}
.customer-food-card-container {
background-color: white;
padding: 0.5rem 1rem;
border-radius: 0.4rem;
box-shadow: 0.1rem 0.1rem 1rem rgba(0, 0, 0, 0.171);
width: 80%;
margin: 1rem;
height: 5rem;
}
.customer-food-input-container {
display: flex;
}
.customer-food-input-container input {
width: 5rem;
}
.customer-foods-container {
display: flex;
width: 100%;
margin-top: 1rem;
justify-content: space-between;
}