blob: 0a8ec5cd551479cd1be8ccdb11966fa603bfcc59 (
plain) (
blame)
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
|
.scroll-down {
position: absolute;
left: 50%;
bottom: 100px;
display: block;
text-align: center;
font-size: 20px;
z-index: 0;
text-decoration: none;
text-shadow: 0;
width: 13px;
height: 13px;
border-bottom: 2px solid #fff;
border-right: 2px solid #fff;
-webkit-transform: translate(-50%, 0) rotate(45deg);
transform: translate(-50%, 0) rotate(45deg);
animation: fade_move_down 3s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}
@keyframes fade_move_down {
0% {
transform: translate(0, -20px) rotate(45deg);
opacity: 0;
}
50% {
opacity: 1;
}
100% {
transform: translate(0, 20px) rotate(45deg);
opacity: 0;
}
}
|