-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.css
More file actions
42 lines (40 loc) · 684 Bytes
/
menu.css
File metadata and controls
42 lines (40 loc) · 684 Bytes
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
.menupage {
display: flex;
flex-direction: column;
}
.menutitleheads {
font-size: calc(15px + 2vw);
font-weight: bolder;
margin: 3%;
}
.menudisplay {
display: flex;
flex-wrap: wrap;
}
.menubox {
border: 5px solid #f5f1ef;
margin: 2%;
width: 29%;
height: auto;
align-items: center;
text-align: center;
border-radius: 30px;
color: black;
box-sizing: border-box;
}
.resized-menu {
width: 80%;
height: auto;
}
button.add-to-cart-btn {
margin-bottom: 5%;
background-color: #ff7f00;
color: white;
border: 1px solid #ff7f00;
padding: 3%;
cursor: pointer;
border-radius: 5px;
}
button.add-to-cart-btn:hover {
background-color: #e67300;
}