-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
108 lines (85 loc) · 1.45 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
* {
font-family: 'Open Sans', sans-serif;
}
body {
margin: 0;
}
#search-button{
margin-top: 10px;
float: right;
border: none;
background-color: white;
cursor: pointer;
font-size:large;
color: gray;
margin-right: 20px;
}
#header h1 {
padding-top: 20px;
margin-left: 20px;
}
.sticky-navbar{
overflow: hidden;
background-color: white;
position: fixed;
top: 0;
width: 100%;
}
#navigation-bar {
overflow: hidden;
background-color: white;
border-bottom: 1px solid gray;
}
#navigation-bar a {
float: left;
display: block;
color: gray;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
border-bottom: 3px solid transparent;
}
#navigation-bar a.active {
border-bottom: 3px solid #006241;
font-weight: bold;
color: #27251F;
}
.menu-header {
margin-left: 20px;
}
li span {
padding-left: 20px;
font-size: 20px;
}
li img {
border-radius: 50%;
height: 100px;
}
li {
padding-top: 10px;
display: flex;
align-items: center;
flex-direction: row;
}
.menu-count-header{
color: #006241;
padding-top: 6px;
padding-right: 20px;
}
.header-container{
display: flex;
align-items: center;
flex-direction: row;
justify-content: space-between;
}
#food-menu .header-container {
padding-top: 20px;
}
.product-menu{
margin-top: 150px;
}
.container{
width: 98vw;
}