-
Notifications
You must be signed in to change notification settings - Fork 0
/
navbar.css
99 lines (85 loc) · 1.54 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
#navbar{
width: 100%;
font-family: "PS Commons",sans-serif;
display: flex;
align-items: center;
position: fixed;
height: 80px;
left: 0;
right: 0;
top: 0;
background: #212121;
box-shadow: 0 10px 20px 0 rgb(0 0 0 / 20%);
z-index: 9999;
line-height: 1.5;
font-size: 15px;
font-weight: 700;
}
#navbar>#leftnav>div{
margin: auto;
}
a{
text-decoration: none;
color: white;
}
#rightnav{
flex-wrap: wrap;
height: 80px;
width: 50%;
display: flex;
justify-content: flex-end;
}
#rightnav>div{
flex-wrap: wrap;
display: flex;
justify-content: space-between;
width:50%;
text-align: center;
align-items: center;
margin-right: 30px;
}
#rightnav>div>button{
background: transparent;
border: 1px solid #fff;
font-size: 13px;
letter-spacing: 0.5px;
padding: 12px 24px;
max-width: 147px;
}
#leftnav{
flex-wrap: wrap;
height: 80px;
width: 60%;
display: flex;
color: white;
}
img{
background-repeat: no-repeat;
background-position: left center;
background-size: 100% auto;
position: relative;
display: inline-block;
width: 180px;
height: 40px;
}
*{
box-sizing: inherit;
}
button{
background-color: transparent;
color: white;
border: 0px;
font-size: 15px;
font-weight: 700;
}
@media all and (min-width:320px) and (max-width:480px){
#rightnav{
display: none;
}
#leftnav{
display: none;
}
#navbar{
width: 50%;
}
}