-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavbar.css
70 lines (69 loc) · 1.35 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
#navbar{
background-color: #202020;
display: grid;
grid-template-columns: 1fr 2fr 1fr;
gap: 30px;
padding: 0px 20px 0px 20px;
margin: -8px;
margin-bottom: 10px;
}
#navbar>div:first-child{
display: grid;
grid-template-columns: 1fr 2fr;
gap: 20px;
align-items: center;
}
#navbar>div:first-child>div:last-child{
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
}
#navbar>div:first-child>div:first-child>img{
height: 30px;
width: 30px;
}
#navbar img{
height: 50px;
width: 50px;
}
sup{
font-size: 10px;
color: grey;
}
h2{
color: white;
}
#navbar>div:nth-child(2){
display: grid;
grid-template-columns: 5fr 1fr 1fr;
align-items: center;
}
#navbar>div:nth-child(2)>input{
height: 40px;
background-color: #121212;
color: #838383;
border: 0;
font-size: 15px;
}
#navbar>div:nth-child(2)>button{
height: 43px;
border: 0;
background-color: #323232;
}
#navbar>div:nth-child(2)>button>img{
height: 42px;
background-color: #323232;
}
#navbar>div:nth-child(2)>img{
margin-left: 10px;
height: 50px;
width: 50px;
border-radius: 50px;
}
#navbar>div:nth-child(3){
display: grid;
align-items: center;
}
#navbar>div:nth-child(3)>img{
width: 100%;
}