-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.css
96 lines (84 loc) · 1.55 KB
/
menu.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
92
93
94
main section {
margin: 150px 100px;
}
.menu-section {
border-top: 15px rgb(232, 130, 75) solid;
border-bottom: 15px rgb(232, 130, 75) solid;
border-radius: 10px;
}
.menu-section .menu-header {
text-align: center;
color: rgb(252, 67, 67);
font-size: 60px;
margin: 20px 0px;
}
.row {
padding:20px 0px;
display: flex;
flex-direction: row;
}
.item {
flex-grow: 1;
text-align: center;
margin:10px 20px;
box-shadow: 0px 0px 4px 1px rgb(194, 192, 194);
border-radius:7px;
}
.item-picture-container {
margin: 20px 0px;
}
.item-picture {
max-width: 100%;
border: 1px solid black;
border-radius: 3px;
}
/* .item-content-container {
border: 1px solid black;
} */
.item-text {
color:black;
margin: 0px 0px;
}
.item-price {
font-weight: bold;
color:red;
margin: 0px 0px 20px 0px;
}
.row .item button {
width: 100%;
height:50px;
font-size: 30px;
background-color: orange;
color:white;
border:none;
border-radius: 3px;
}
.api-section {
margin-top: 100px;
background-color:#f3d7c0;
border-radius: 10px;
padding: 30px;
display:flex;
flex-direction: row;
}
.api-box {
width:45%;
border: 3px solid rgb(106, 52, 5);
border-radius: 10px;
margin:0px 10px;
background-color: white;
flex-grow:1;
text-align: center;
padding: 0px 0px 40px 0px;
}
.api-box-header {
margin: 0px 0px 20px 0px;
color:black;
font-size: 35px;
}
.api-box-inside {
padding-top: 20px;
}
.api-box-window {
width:85%;
}