-
Notifications
You must be signed in to change notification settings - Fork 0
/
snowfall-right-2x.css
96 lines (96 loc) · 1.85 KB
/
snowfall-right-2x.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
body {
/*background: black url(https://lh3.googleusercontent.com/-8yGCBzF9F_s/XCHzZ5t7sJI/AAAAAAAAAlA/fnnU7Cma8UM9oE9ztOtlcqFs_aZiRI-aQCK8BGAs/s0/2018-12-25.jpg) center center no-repeat/cover;*/
background-image: url(mountains.png);
/*background-color: #EBE5E3;*/
}
/* customizable snowflake styling */
.snowflake {
color: #f8f0ec;
font-size: 1em;
font-family: Arial;
text-shadow: 0 0 1px #000;
}
@keyframes snowflakes-fall{
0%{
left: -10%;
}
100%{
left: 100%;
}
}
@keyframes snowflakes-shake{
0%{
transform:translateY(0px);
}
50%{
transform:translateY(80px);
}
100%{
transform:translateY(0px);
}
}
.snowflake{
position:fixed;
left:-10%;
z-index:9999;
user-select:none;
cursor:default;
animation-name:snowflakes-fall,snowflakes-shake;
animation-duration:6s,1.2s;
animation-timing-function:linear,ease-in-out;
animation-iteration-count:infinite,infinite;
animation-play-state:running,running;
}
.snowflake:nth-of-type(0){
top:1%;
animation-delay:0s,0s;
}
.snowflake:nth-of-type(1){
top:10%;
animation-delay:1s,1s;
}
.snowflake:nth-of-type(2){
top:20%;
animation-delay:4s,.5s;
}
.snowflake:nth-of-type(3){
top:30%;
animation-delay:3s,1s;
}
.snowflake:nth-of-type(4){
top:40%;
animation-delay:1s,1.1s;
}
.snowflake:nth-of-type(5){
top:50%;
animation-delay:3.5s,1.6s;
}
.snowflake:nth-of-type(6){
top:60%;
animation-delay:1.5s,1.4s;
}
.snowflake:nth-of-type(7){
top:70%;
animation-delay:1s,1s;
}
.snowflake:nth-of-type(8){
top:80%;
animation-delay:3s,0s;
}
.snowflake:nth-of-type(9){
top:90%;
animation-delay:2s,1.1s;
}
/* Demo Purpose Only*/
.demo {
font-family: 'Raleway', sans-serif;
color:#fff;
display: block;
margin: 0 auto;
padding: 15px 0;
text-align: center;
}
.demo a{
font-family: 'Raleway', sans-serif;
color: #000;
}