forked from FogNetwork/Ingot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (64 loc) · 1.45 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
<title>Ingot</title>
<div class="title">Ingot</div>
<div class="button" >Launch Ingot<a href="javascript:(function () {var a = document.createElement('script');a.src = 'https://cdn.jsdelivr.net/gh/FogNetwork/Ingot@latest/ingot.min.js';document.body.appendChild(a);}())" class="button-text">Ingot</a></div>
<div class="button-note">Drag the button to your bookmarks bar for easy access</div>
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');
* {
font-family: "Roboto";
}
:root {
color-scheme: dark;
}
body {
background: #202124;
margin: 0;
padding: 0;
}
.title {
text-align: center;
font-size: 50px;
margin: 20px;
margin-bottom: 50px;
user-select: none;
font-weight: 500;
}
.button {
position: relative;
width: 230px;
height: 47px;
border: 1px solid rgb(95, 99, 104);
color: rgb(138, 180, 248);
background: rgba(138, 180, 248, 0.08);
border-radius: 6px;
margin: 20px auto;
display: flex;
justify-content: center;
align-items: center;
font-size: 24px;
user-select: none;
font-weight: 500;
}
.button:active {
background: rgba(138, 180, 248, 0.25);
}
.button-text {
opacity: 0;
user-select: none;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
height: 100%;
width: 100%;
}
.button-note {
margin: 0 auto;
text-align: center;
color: rgb(138, 180, 248);
width: 300px;
user-select: none;
}
</style>