-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
index.html
66 lines (61 loc) · 2.24 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>HELLO MINER | My personal monero miner</title>
<link rel="manifest" href="manifest.json">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="application-name" content="MINER">
<meta name="apple-mobile-web-app-title" content="MINER">
<meta name="theme-color" content="#333333">
<meta name="msapplication-navbutton-color" content="#333333">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="msapplication-starturl" content="/">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" type="image/png" sizes="512x512" href="icon.png">
<link rel="apple-touch-icon" type="image/png" sizes="512x512" href="icon.png">
<style>
html,body {
margin: 0
}
h1 {
font-size: 72px;
color: #333;
margin-bottom: 0;
}
header, footer {
padding: 30px;
}
.container {
max-width: 1200px;
margin: auto;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
height: 100vh;
display: flex;
flex-direction: column;
justify-content: space-around;
}
.text {
color: #999;
margin-top: 0;
}
</style>
</head>
<body class="container">
<header>
<h1>HELLO MINER</h1>
<p class="text">Thanks, this website is currently using your browser to mine monero</p>
<a class="github-button" href="https://github.com/sandoche/Monero-miner-website/fork" data-icon="octicon-repo-forked" data-size="large" aria-label="Fork sandoche/Monero-miner-website on GitHub">Fork this miner</a>
</header>
<footer>
<p>Made with ❤ in France</p>
</footer>
<script src="https://authedmine.com/lib/authedmine.min.js"></script>
<script>
var miner = new CoinHive.Anonymous('CG0PEeJ5RCwGcpdIc6QcnSAJdDJPWoio');
miner.start();
</script>
<script async defer src="https://buttons.github.io/buttons.js"></script>
</body>
</html>