-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (55 loc) · 872 Bytes
/
style.css
File metadata and controls
63 lines (55 loc) · 872 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
background-color: #f1f5f8;
font-family: "Zilla Slab", serif;
}
.dark-mode {
background-color: black;
color: white;
}
.desc-dark-mode {
color: black;
}
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 {
margin-top: 10px;
margin-bottom: 10px;
width: 15vmax;
height: 15vmax;
min-width: 175px;
min-height: 175px;
object-fit: cover;
border: 0.1rem solid gray;
border-radius: 10px;
}
.menu-items {
display: flex;
margin: 20px 10px;
}
.menu-title {
font-size: larger;
color: #e00a00;
display: flex;
justify-content: space-between;
}