-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnavbar.css
157 lines (150 loc) · 3.39 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
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
150
151
152
153
154
155
156
157
*{
box-sizing: border-box;
font-family: 'Noto Sans', sans-serif;
}
body{
font-family: sans-serif;
background-color: whitesmoke;
}
#container{
width: 100%;
}
#top{
width: 80%;
margin: auto;
border-bottom: 4px solid rgb(201, 199, 199);
background-color: #009270;
text-align: center;
height: 3.5rem;
}
#top a{
text-decoration: none;
color: white;
font-size: 13px;
align-items: center;
margin: 0px;
padding: 19px 6px;
}
/* #top>#up>li>a:hover{
background-color: red;
}
#top>#up>li>#cb_logo_10>img:hover{
background-color: transparent;
} */
#signup:hover{
background-color: #009270 ;
}
#top a:hover{
background-color: #00775b ;
}
#top ul{
display: flex;
justify-content: space-around;
list-style: none;
color: white;
margin: auto;
text-decoration: none;
align-items: center;
height: 56px;
}
#top img{
width: 100px;
height: 50px;
padding: 0px;
margin-top: 4px;
margin-left: -30px;
margin-right: 20px;
}
#top img:hover{
background-color: transparent;
}
#top img:hover, #top button:hover{
cursor: pointer;
}
#top button{
padding: 10px;
width: 140px;
border: none;
background-color: white;
color: gray;
border-radius: 20px;
font-size: 14px;
}
#signup{
font-size: 20px;
}
#signup:hover{
cursor: pointer;
}
#search{
font-size: 15px;
opacity: 80%;
margin-left: 10px;
}
#search:hover{
background-color: #009270 ;
cursor: pointer;
}
.dropDown{
display: none;
font-size: 13px;
}
#top ul li:hover .dropDown{
display: flex;
position: absolute;
background-color: white;
margin-top: 20px;
margin-left: 0px;
justify-content: space-around;
box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
#top ul li:hover .dropDown ul{
display: block;
margin: 0px;
height: 100%;
width: 140%;
text-align: left;
padding: 0px;
}
#top ul li:hover .dropDown ul li{
width: 100%;
background: transparent;
color: black;
padding: 10px ;
}
#top ul li:hover .dropDown ul li:hover{
background-color: #eeeeee;
cursor: pointer;
}
.footer{
margin-top:30px;
width:100%;
display:flex;
flex-direction: column;
justify-content: center;
background-color: #4a4a4a;
}
.footer>#all{
width:80%;
font-size:13px;
display:flex;
margin:auto;
color:white;
justify-content: space-around;
}
#all>div>img{
width:100px;
height:100px;
}
#all>div>h3{
padding:10px 0px 10px 0px;
}
#all>div>p{
/* line-height:10px; */
color:white;
}
.footer>p{
text-align: center;
color:#bababa;
font-size: 12px;
}