-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.css
123 lines (123 loc) · 2.09 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/* background stufs */
body {
background-image: url(menu-bg.png);
font-family: 'Roboto', sans-serif;
background-repeat: no-repeat;
background-size: cover;
}
/* full menu 1*/
.menu {
display: flex;
}
/* full menu 2 */
.menuu {
display: flex;
padding-top: 100px;
}
/* menu 1,2 */
.menu1 {
width: 28%;
background-color: #4593ce;
margin-left: inherit;
margin-right: auto;
padding: 20px;
border-radius: 8px;
}
/* menu 1,2 */
.menu2 {
width: 28%;
background-color: #4593ce;
margin-left: auto;
margin-right: auto;
padding: 20px;
border-radius: 8px;
}
/* menu 1,2 */
.menu3 {
width: 28%;
background-color: #4593ce;
margin-left: auto;
margin-right: inherit;
padding: 20px;
border-radius: 8px;
}
/* only h1 tag */
h1 {
text-align: center;
color: white;
}
/* three tag at one time */
h2,li,p {
text-align: center;
}
/* menu text */
.established {
font-style: italic;
color: white;
font-size: 30px;
}
/* items list */
.item li {
display: inline-block;
margin: 5px 0;
font-size: 18px;
}
/* menu cards */
.flavor,
.dessert {
width: 50%;
text-align: left;
}
/* priceing */
.price {
width: 50%;
text-align: right;
}
/* hr tag , line */
hr {
height: 2px;
background-color: brown;
border-color: black;
}
/* anchor tag */
a {
color: black;
}
@media only screen and (max-width:800px){
.menu {
display: inline;
}
.menuu {
display: inline;
}
.menu1 {
width: 70%;
background-color: #4593ce;
margin-left: auto;
margin-right: auto;
padding: 20px;
border-radius: 8px;
text-align: center;
margin-top: 20px;
}
.menu2 {
width: 70%;
background-color: #4593ce;
margin-left: auto;
margin-right: auto;
padding: 20px;
border-radius: 8px;
text-align: center;
margin-top: 20px;
}
.menu3 {
width: 70%;
background-color: #4593ce;
margin-left: auto;
margin-right: auto;
padding: 20px;
border-radius: 8px;
text-align: center;
margin-top: 20px;
}
}