-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnavbar.css
More file actions
63 lines (55 loc) · 847 Bytes
/
Copy pathnavbar.css
File metadata and controls
63 lines (55 loc) · 847 Bytes
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
nav{
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
background-color: rgb(4, 73, 116);;
position: fixed;
top: 0;
left: 0;
box-shadow: 8px 8px 12px rgb(4, 73, 116);
width: 100%;
}
nav div h1{
font-size: 18px;
color: white;
}
div.third-group button{
padding: 4px 15px;
width: 100%;
height: 100%;
text-align: center;
border: 1px solid;
background-color: transparent;
border-radius: 4px;
cursor: pointer;
color: white;
}
div.third-group a{
color: white;
}
@media (max-width:768px){
nav{
padding: 12px 15px;
}
nav div h1{
font-size: 15px;
}
nav div ul{
display:none;
}
.fa-bars{
display: block;
}
}
@media (max-width: 500px){
nav{
padding: 12px 14px;
}
nav div h1{
font-size: 14px;
}
nav div ul{
display:none;
}
}