-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex6.css
More file actions
74 lines (37 loc) · 987 Bytes
/
Copy pathindex6.css
File metadata and controls
74 lines (37 loc) · 987 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
* {
padding: 0;
margin: 0;
}
body {
background: #000000;
height: 100vh;
position: relative;
overflow: hidden;
}
.drop {
width: 1.5px;
height: 20px;
position: absolute;
border-radius: 0 0 5px 5px;
-webkit-border-radius: 0 0 5px 5px;
-moz-border-radius: 0 0 5px 5px;
-ms-border-radius: 0 0 5px 5px;
-o-border-radius: 0 0 5px 5px;
animation: DropFall 5s linear infinite;
-webkit-animation: DropFall 5s linear infinite;
}
@keyframes DropFall {
from {
transform: translateY(-100%);
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
} to {
transform: translateY(100vh);
-webkit-transform: translateY(100vh);
-moz-transform: translateY(100vh);
-ms-transform: translateY(100vh);
-o-transform: translateY(100vh);
}
}