-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathnav.css
53 lines (47 loc) · 790 Bytes
/
nav.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
.navul {
margin: 0;
padding: 0;
list-style-type: none;
overflow: hidden;
position: fixed;
top:0;
width: 100%;
z-index: 3;
background-color: black;
box-shadow: 1px 2px 25px #000000;
/* background-blend-mode: exclusion; */
/* color: white; */
/* margin-bottom: 20px; */
/*#0e0e1e*/
}
.navli {
float: right;
}
.navlihome a{
float: left;
display: block;
text-align: center;
padding: 14px 16px;
text-decoration: none;
color: white;
background-color:#e83b35;
}
.navli a{
display: block;
text-align: center;
padding: 14px 16px;
text-decoration: none;
color: white;
}
li a:hover{
background-color:#e83b35;
color: white;
}
.active{
background-color: #e83b35;
}
@media (max-width: 768px){
.navli{
display: none;
}
}