-
Notifications
You must be signed in to change notification settings - Fork 5
/
lunch.css
58 lines (50 loc) · 859 Bytes
/
lunch.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
/* Reset some default browser styles */
body, h1, h2, p {
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
}
header {
background-color:#072541;
color: #F8BDEB;
text-align: center;
padding: 1em 0;
}
main {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.menu {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.dish {
width: 50%;
padding: 20px;
margin: 20px;
background-color: #FBECB2;
box-shadow: 0px 0px 10px #5272F2;
border-radius: 5px;
text-align: center;
}
.dish img {
max-width: 100%;
height: auto;
border-radius: 5px;
}
h2 {
margin: 10px 0;
font-size: 1.5em;
}
.price {
color: #FF5722;
font-weight: bold;
}