-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
149 lines (148 loc) · 2.44 KB
/
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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.navbar{
display: flex;
align-items: center;
padding: 20px;
}
nav{
flex: 1;
text-align: right;
}
nav ul{
display: inline-block;
list-style-type: none;
}
nav ul li{
display: inline-block;
margin-right: 20px;
}
a{
text-decoration: none;
color: green;
font-family: Product Sans;
}
p{
color: black;
}
.container{
max-width: 1300px;
margin:auto;
padding-left: 25px;
padding-right: 25px;
}
.row{
display: flex;
align-items: center;
flex-wrap: wrap;
justify-content: space-around;
}
.col-2 img{
padding: auto;
align-items: center;
padding-right: 60px;
text-align: center;
}
.col-2 {
flex-basis: 50%;
min-width: 300px;
}
.ResName{
text-align: center;
font-family: Product Sans;
font-style: bold;
font-size: 20px;
}
.ResSubName{
font-family: Barlow medium;
font-size: 13px;
color: grey;
text-align: center;
}
.checked {
text-align: center;
color: orange;
align-items: flex-end;
margin-top: 30px;
font-family: Product Sans;
font-size: 11px;
}
.star{
text-align: center;
font-family: Roboto;
color: black;
}
.btn{
text-align: center;
display: inline-block;
background: #FFA500;
color: black;
border-radius: 10px;
padding: 8px 20px;
margin: 30px;
font-family: Product Sans;
transition: background 0.5s;
}
.btn:hover {
background: black;
color: white;
}
.categories{
margin:70px 0;
}
.col-3{
flex-basis: 30%;
margin-bottom: 10px;
}
.col-3 img {
width: 200px;
height: 150px;
text-align: center;
border-radius: 15px;
}
.small-container{
max-width: 1200px;
margin: auto;
padding: 8px 20px;
padding-left: 250px;
padding-right: 200px;
text-align: center;
}
.SubCatName{
transform: rotate(270deg);
}
.foodMenu{
display: inline-block;
padding: 1px;
text-align: right;
padding-right: 1000px;
display: block;
list-style-type: none;
}
.btn1{
text-align: right;
display: inline-block;
background: white;
color: black;
border-radius: 10px;
padding: 8px 10px;
margin: 3px;
font-family: Product Sans;
font-size: 15px;
transition: background 0.5s;
}
.btn1:hover {
background: darkgreen;
color: white;
font-family: Product Sans;
}
.vl {
border-left: 6px solid green;
height: 240px;
position: absolute;
left: 370px;
margin-left: -3px;
}