-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
72 lines (60 loc) · 1.04 KB
/
Copy pathindex.css
File metadata and controls
72 lines (60 loc) · 1.04 KB
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
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;400&display=swap");
body,
html {
font-family: "Roboto", sans-serif;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
}
.header {
display: flex;
justify-content: space-between;
box-shadow: 0px 14px 28px -3px rgba(0, 0, 0, 0.1);
}
.nav-items {
display: flex;
list-style: none;
}
.nav-items > .item {
padding: 20px;
}
.brand > .brand-name {
font-size: 1.5rem;
font-weight: bold;
margin-left: 10px;
}
.brand {
display: flex;
align-items: center;
}
.brand-logo {
height: 80px;
width: 80px;
}
ul > li {
display: inline;
}
.rest-card {
display: flex;
flex-direction: column;
height: 300px;
width: 250px;
box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
padding: 15px;
margin-left: 20px;
margin-top: 10px;
}
.rest-list {
display: flex;
justify-content: stretch;
flex-wrap: wrap;
}
.cuisines {
width: 100%;
}
.cuisines > .cuisine {
word-wrap: break-word;
margin-top: 0px;
}
.name {
margin-bottom: 5px;
}