-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnavbar.css
109 lines (106 loc) · 2.1 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
#navbar__container {
color: white;
background-color: black;
padding-top: 20px;
z-index: 200;
}
#navbar__container > div > p {
font-size: 11px;
font-weight: bold;
padding: 16px 7px 0;
letter-spacing: 2px;
margin-left: 50px;
cursor: pointer;
}
#navbar__container > div > div {
width: 100px;
display: flex;
padding-right: 50px;
}
#navbar__container > div > :nth-child(2) > div {
padding: 14px 7px 0;
}
.menu__item {
height: 20px;
width: 20px;
}
.menu__item > a > img {
width: 20px;
height: 20px;
}
#logo > img {
width: 100%;
display: inline-block;
}
#navbar__container > :first-child {
display: flex;
justify-content: space-between;
margin: 13px auto 0;
position: absolute;
width: 100%;
top: 0;
}
#navbar__container > :nth-child(2) {
width: 350px;
margin: auto;
margin-top: 8px;
z-index: 3;
}
#logo {
font-size: 35px;
text-decoration: none;
}
#section {
display: flex;
margin-left: 55px;
align-items: center;
box-sizing: border-box;
justify-content: space-between;
margin-top: 20px;
padding-bottom: 10px;
}
#section > :first-child {
width: 8%;
border-bottom: 1px solid white;
}
#section > :first-child > img {
padding-bottom: 6px;
}
#section > :first-child > input:focus {
border: none;
}
#section > :first-child > input {
padding-left: 4px;
}
#section > :first-child > ::placeholder {
letter-spacing: 1.5px;
line-height: 35px;
font-size: 13px;
font-family: sans-serif;
font-weight: 600;
color: #929289;
}
#section > :nth-child(2) {
width: 76%;
}
#section > :nth-child(2) > div {
display: flex;
}
#section > :nth-child(2) > div > div {
padding-right: 45px;
}
#section > :nth-child(2) > div > div > a {
white-space: nowrap;
text-decoration: none;
color: white;
font-size: 12px;
}
#navbar__container > :nth-child(3) > div > img {
width: 20px;
height: 20px;
}
.inputsherch {
background-color: black;
border: 0;
color: white;
}