forked from Giuca002/MHcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
129 lines (127 loc) · 4.32 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<style>
#container {
width: 250px;
height: 250px;
margin: 0;
padding: 0;
background-color: rgb(30, 30, 30);
position: relative;
}
button {
align-items: center;
appearance: button;
background-color: rgb(33, 150, 243);
background-repeat: no-repeat;
border-bottom-color: rgb(33, 150, 243);
border-right-color: rgb(33, 150, 243);
border-right-style: solid;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border-bottom-style: solid;
border-bottom-width: 1px;
border-image-outset: 0;
border-image-repeat: stretch;
border-image-slice: 100%;
border-image-source: none;
border-image-width: none;
border-left-color: rgb(33, 150, 243);
border-left-style: solid;
border-left-width: 1px;
border-top-color: rgb(33, 150, 243);
border-top-left-radius: 4px;
border-top-right-radius: 4px;
border-top-style: solid;
border-top-width: 1px;
box-shadow: none;
box-sizing: border-box;
color: white;
cursor: pointer;
display: flex;
flex-basis: auto;
flex-grow: 0;
flex-shrink: 0;
font-family: Poppins, sans-serif;
font-feature-settings: normal;
font-kerning: auto;
font-language-override: normal;
font-optical-sizing: auto;
font-size: 16px;
font-size-adjust: none;
font-stretch: 100%;
font-style: normal;
font-variant-alternates: normal;
font-variant-caps: normal;
font-variant-east-asian: normal;
font-variant-ligatures: normal;
font-variant-numeric: normal;
font-variant-position: normal;
font-variation-settings: normal;
font-weight: 500;
height: 46px;
justify-content: center;
letter-spacing: normal;
line-height: 24px;
margin-bottom: 0px;
margin-top: 0px;
min-width: 64px;
outline-color: rgb(0, 8, 26);
outline-style: none;
outline-width: 0px;
overflow-wrap: break-word;
overflow-x: visible;
overflow-y: visible;
padding-bottom: 10px;
padding-left: 32px;
padding-right: 32px;
padding-top: 10px;
position: relative;
tab-size: 4;
text-align: center;
text-decoration-color: white;
text-decoration-line: none;
text-decoration-style: solid;
text-decoration-thickness: auto;
text-indent: 1.42857px;
text-rendering: optimizeLegibility;
text-transform: capitalize;
transition-duration: 0.28s;
transition-property: box-shadow, transform, opacity;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
user-select: none;
vertical-align: middle;
white-space: nowrap;
word-break: normal;
width: auto;
margin-left: auto;
margin-right: auto;
}
strong {
color: white;
margin-right: auto;
margin-left: auto;
padding-top: 10px;
font-size: 25px;
}
#information {
color: rgba(255, 255, 255, 0.7);
margin-right: auto;
margin-left: auto;
padding-left: 20px;
padding-right: 20px;
}
</style>
<script src="api.js"></script>
</head>
<body id="container">
<strong>MHcode v.1.0</strong>
<p id="information">Click on the button below to copy your Minehut API keys to your clipboard. After copying it, paste it into any program that requires them.</p>
<button id="api_button">COPY API KEYS</button>
<p id="information">©2022 Giuca002</p>
<p id="demo"></p>
</body>
</html>