-
Notifications
You must be signed in to change notification settings - Fork 4
/
navbar.css
124 lines (124 loc) · 2.34 KB
/
navbar.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
/* *{
box-sizing: border-box;
margin:0;
padding:0;
} */
#navbar{
/* border: 1px solid red; */
display:flex;
width:100%;
height:80px;
justify-content: center;
align-items: center;
align-content: center;
/* margin: auto; */
margin-bottom: 10px;
}
#navbar a{
color: black;
text-decoration:none;
}
#navbar #logo{
/* border: 1px solid red; */
width:15%;
margin-left:20px;
}
#navbar #logo>a>img{
display: flex;
/* border: 1px solid teal; */
width:100%;
height:70px;
margin:auto;
}
#navbar #input_tag{
display: flex;
/* border: 1px solid red; */
width:40%;
height:30px;
margin-left: 10px;
/* align-items: center;
justify-content: center; */
align-content: center;
margin:auto;
}
#navbar #input_tag>input{
display: flex;
border: 1px solid black;
padding: 10px;
width:100%;
height:100%;
margin:auto;
border-radius:20px;
}
#navbar #Review{
/* border: 1px solid red; */
width:6%;
display:flex;
margin-left:20px;
}
#navbar #Review>img{
display: flex;
/* border: 1px solid teal; */
width:25%;
margin:auto;
}
#navbar #Review>p{
display: flex;
/* border: 1px solid teal; */
font-family:"Trip Sans VF", "Trip Sans", Arial, sans-serif;
font-size: 16px;
margin-left:10px;
margin:auto;
}
#navbar #trips{
/* border: 1px solid red; */
width:5%;
margin-left: 20px;
display:flex;
}
#navbar #trips>img{
display: flex;
/* border: 1px solid teal; */
width:25%;
margin:auto;
}
#navbar #trips>p{
display: flex;
font-family:"Trip Sans VF", "Trip Sans", Arial, sans-serif;
font-size: 16px;
/* border: 1px solid teal; */
margin:auto;
}
#navbar #alerts{
/* border: 1px solid red; */
width:5%;
margin-left: 20px;
display:flex;
}
#navbar #alerts>img{
display: flex;
/* border: 1px solid teal; */
width:25%;
margin:auto;
}
#navbar #alerts>p{
display: flex;
font-family:"Trip Sans VF", "Trip Sans", Arial, sans-serif;
font-size: 16px;
/* border: 1px solid teal; */
margin:auto;
}
#navbar #signin{
margin-right:20px;
margin-left: 20px;
width:8%;
}
#navbar #signin>button{
padding:12px;
font-size: 15px;
border-radius: 20px;
background-color: black;
}
#navbar #signin>button>a{
color:white;
}