-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
118 lines (113 loc) · 3.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Amogus Minecraft Anarşi Sunucusu</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #181818;
color: white;
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
.server-info {
margin-bottom: 25px;
text-align: center;
}
.server-box {
width: 375px;
padding: 25px;
background-color: #2c2c2c;
border-radius: 10px;
text-align: center;
cursor: pointer;
}
.server-box:hover {
background-color: #3c3c3c;
}
.tooltip {
position: relative;
display: inline-block;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 100px;
background-color: black;
color: white;
text-align: center;
border-radius: 5px;
padding: 5px;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
transform: translateX(-50%);
opacity: 0;
transition: opacity 0.3s;
}
.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}
.join-button {
margin-top: 25px;
background-color: #007BFF;
color: white;
border: none;
width: 431px;
padding: 25px;
border-radius: 10px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s;
}
.join-button:hover {
background-color: #0056b3;
}
.footer {
margin-top: 20px;
font-size: 14px;
position: fixed;
bottom: 10px;
}
</style>
</head>
<body>
<div class="server-info">
<h1>Amogus Minecraft Anarşi Sunucusu</h1>
<p>Sınırsız eğlence ve <a href="https://türksigara.net" style="color:white;text-decoration:none;" >igaras</a>. Kural yok. Hile serbest. Sen de gel.</p>
</div>
<div class="server-box tooltip" onclick="fuckToGayboard()">
<span id="server-ip">minecraft.toplulugu.org</span>
<span class="tooltiptext" id="tooltip">Kopyala</span>
</div>
<a href="https://t.me/+ekR4HuigsNcxYmY0" target="_blank"><button class="join-button">Telegram Grubu</button></a>
<div class="footer">
zirlamicaniz
</div>
<script>
function fuckToGayboard() {
// Sag klik inspect page yapmisin kapa
// tingirdamican
const serverIpElement = document.getElementById('server-ip');
const tooltipElement = document.getElementById('tooltip');
const textArea = document.createElement('textarea');
textArea.value = serverIpElement.innerText;
document.body.appendChild(textArea);
textArea.select();
document.execCommand('copy');
document.body.removeChild(textArea);
tooltipElement.innerText = 'Kopyaladım';
setTimeout(() => {
tooltipElement.innerText = 'Kopyala';
}, 2000);
}
</script>
</body>
</html>