-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (53 loc) · 794 Bytes
/
style.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
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
background-color: #f1f5f8;
font-family: "Zilla Slab", serif;
}
h2 {
font-family: "Great Vibes", cursive;
font-size: 3rem;
text-align: center;
color: #ff6a23;
}
.menu {
margin-top: 20px;
}
.btn-container {
display: flex;
justify-content: center;
align-items: center;
margin: 40px 0;
}
.btn-item {
margin-left: 15px;
}
.photo {
width: 30%;
height: 175px;
object-fit: cover;
border: 0.25rem solid black;
border-radius: 10px;
}
.menu-items {
display: flex;
margin: 20px 0;
}
.menu-info {
margin-left: 20px;
width: 100%;
}
.menu-title {
display: flex;
justify-content: space-between;
border-bottom: 1px solid black;
}
h4 {
color: #e00a00;
}
.menu-text {
padding-top: 20px;
}