-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnatural-menu.css
82 lines (50 loc) · 942 Bytes
/
natural-menu.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
body{
margin: 0;
padding: 0;
font-family: sans-serif;
background: url(natural-menu.jpg);
background-size: cover;
}
ul{
position: absolute;
top: 30%;
left: 50%;
transform: translate(-50%, -50%);
display: flex;
}
ul li{
list-style: none;
}
ul li a{
position: relative;
text-decoration:none;
text-transform: uppercase;
color: #262626;
padding: 10px 15px;
font-weight: bold;
font-size: 18px;
transition: .5s;
border-radius: 50% 0 50% 0;
}
ul li a:hover{
background: #196719;
color: #fff;
}
ul li a:before{
content: "";
position: absolute;
top: -17%;
left: 90%;
width: 30px;
height: 3px;
background-color: #196719;
transform: translateY(-10px);
transition: transform .5s;
border-radius: 50%;
opacity: 0;
}
ul li a:hover:before{
transform: translateY(0px);
transform: rotate(-30deg);
opacity: 1;
}