-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavbar.css
102 lines (86 loc) · 1.44 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
body{
margin: 0;
}
.navbar{
position:fixed;
display: flex;
justify-content: space-between;
background-color: white;
width: 100%;
padding: 25px 11% 25px 6%;
box-sizing: border-box;
height: 103px;
font-family: sans-serif;
font-weight: 550;
z-index: 10;
font-size: .85rem;
margin-bottom: 100px;
top: 0;
}
.nav-checkbtn{
display: none;
}
.navbar *{
cursor: pointer;
}
.navbar-left{
display: flex;
height: 52px;
justify-content: space-around;
align-items: center;
width: 35%;
}
.navbar-left *{
margin: 0;
}
.navbar-left>img{
width:65px;
}
.navbar-right{
display: flex;
width: 20%;
justify-content: space-around;
align-items: center;
}
.navbar-right *{
margin: 0;
}
.man-icon{
width: 10%;
}
.navbar-right>img:last-child{
width: 50px;
}
.account{
border-right: 1px solid rgb(175, 175, 175);
padding-right: 10px;
height: 17px;
}
.sample-body{
width: 100%;
position: relative;
margin-top: 100px;
}
p a{
text-decoration: none;
color: black;
}
@media screen and (max-width: 800px){
.nav-checkbtn {
display: block;
}
.hide-item{
display: none;
}
.navbar-right>img:last-child{
width: 40px;
}
.navbar-left{
justify-content: space-between;
align-items: center;
width: 56%;
}
.navbar-left>img{
width: 60px;
}
}