-
Notifications
You must be signed in to change notification settings - Fork 2
/
navigation.css
56 lines (56 loc) · 1.02 KB
/
navigation.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
nav {
width: 600px;
height: 100px;
float: right;
}
nav ul li {
list-style: none;
float: left;
line-height: 100px;
}
nav ul li a{
text-decoration: none;
text-transform: uppercase;
font-family: sans-serif;
padding: 20px 20px;
font-weight: bold;
position: relative;
color: white;
margin-left: 5px;
}
nav ul li a:before {
content: '';
position: absolute;
width: 5px;
height: 5px;
background-color: white;
bottom: 0;
left: 0;
border-radius: 50px;
opacity: 0;
transition: .5s ease;
}
nav ul li a:after {
content: '';
position: absolute;
width: 5px;
height: 5px;
background-color: white;
bottom: 0;
right: 0;
border-radius: 50px;
opacity: 0;
transition: .5s ease;
}
nav ul li a:hover:before {
width: 50%;
background-color: yellow;
border-radius: 50px 0px 0px 50px;
opacity: 1;
}
nav ul li a:hover:after {
width: 50%;
background-color: yellow;
border-radius: 0px 50px 50px 0px;
opacity: 1;
}