-
Notifications
You must be signed in to change notification settings - Fork 1
/
menu.css
61 lines (49 loc) · 771 Bytes
/
menu.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
.menu-bar {
height: max-content;
width: max-content;
padding: 6px 0px 7px 0px;
border-bottom: 1px solid #DDD;
/* to center menu-bar */
margin: auto;
display: flex;
flex-direction: row;
/* flex-wrap: wrap;
*/
/* justify-content: center;*/
background-color: #FFF;
}
.menu {
height: 42px;
width: max-content;
border: none;
padding: 0px;
display: flex;
}
.left-menu {
margin-right: 35px;
}
.center-menu {
border: none;
margin-right: 20px;
}
.nct-image {
padding: 6px 8px 6px 0px;
height: 30px;
width: 64px;
}
@media (max-width: 1010px) {
.menu-bar {
justify-content: flex-start;
}
.menu-search-box {
margin-left: 73px;
}
}
@media (max-width: 736px) {
.menu-search-box {
margin-left: 0px;
}
.center-menu {
margin-left: 73px;
}
}