-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharrow.css
More file actions
51 lines (44 loc) · 809 Bytes
/
arrow.css
File metadata and controls
51 lines (44 loc) · 809 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
.arrow,
.arrow:before
{
position: absolute;
left: 50%
}
.arrow{
width: 40px;
height: 40px;
top: 90%;
margin: -20px 0 0 -20px;
-webkit-transform: rotate(45deg);
border-left: none;
border-top: none;
border-right: 4px #000000 solid;
border-bottom: 4px rgb(0, 0, 0) solid;
}
.arrow:before
{
content: '';
width: 20px;
height: 20px;
top: 50%;
margin: -10px 0 0 -10px;
border-left: none;
border-top: none;
border-right: 2px rgb(0, 0, 0) solid;
border-bottom: 2px rgb(0, 0, 0) solid;
animation-duration: 2s;
animation-iteration-count: infinite;
animation-name: arrow;
}
@keyframes arrow
{
0%
{
opacity: 1;
}
100%
{
opacity: 0;
transform: translate(-10px, -10px);
}
}