Spaces:
Running
Running
Update index.html
Browse files- index.html +48 -21
index.html
CHANGED
@@ -6,44 +6,71 @@
|
|
6 |
<title>Alteração de Domínio</title>
|
7 |
<style>
|
8 |
body {
|
9 |
-
font-family: Arial, sans-serif;
|
10 |
-
text-align: center;
|
11 |
-
background-color: #282c34;
|
12 |
-
color: white;
|
13 |
-
padding: 20px;
|
14 |
margin: 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
}
|
|
|
16 |
h1 {
|
|
|
17 |
margin-bottom: 20px;
|
|
|
|
|
18 |
}
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
margin-bottom: 20px;
|
25 |
}
|
|
|
26 |
.redirect-btn {
|
27 |
display: inline-block;
|
28 |
-
background: #00BFAE;
|
29 |
color: white;
|
30 |
-
padding:
|
31 |
-
border-radius:
|
32 |
text-decoration: none;
|
33 |
font-size: 18px;
|
34 |
font-weight: bold;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
margin-top: 20px;
|
|
|
|
|
36 |
}
|
37 |
</style>
|
38 |
</head>
|
39 |
<body>
|
40 |
-
<
|
41 |
-
|
42 |
-
|
43 |
-
<
|
|
|
|
|
|
|
44 |
</div>
|
45 |
-
|
46 |
-
<a href="https://ip-from-minecraft.vercel.app/" class="redirect-btn" target="_blank">Ir para o novo domínio</a>
|
47 |
-
|
48 |
</body>
|
49 |
</html>
|
|
|
6 |
<title>Alteração de Domínio</title>
|
7 |
<style>
|
8 |
body {
|
9 |
+
font-family: 'Arial', sans-serif;
|
|
|
|
|
|
|
|
|
10 |
margin: 0;
|
11 |
+
padding: 0;
|
12 |
+
background-color: #2d3436;
|
13 |
+
color: #ffffff;
|
14 |
+
display: flex;
|
15 |
+
justify-content: center;
|
16 |
+
align-items: center;
|
17 |
+
height: 100vh;
|
18 |
+
text-align: center;
|
19 |
+
}
|
20 |
+
|
21 |
+
.container {
|
22 |
+
background-color: #34495e;
|
23 |
+
padding: 40px;
|
24 |
+
border-radius: 15px;
|
25 |
+
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
|
26 |
+
width: 80%;
|
27 |
+
max-width: 500px;
|
28 |
}
|
29 |
+
|
30 |
h1 {
|
31 |
+
font-size: 30px;
|
32 |
margin-bottom: 20px;
|
33 |
+
font-weight: bold;
|
34 |
+
color: #ffffff;
|
35 |
}
|
36 |
+
|
37 |
+
p {
|
38 |
+
font-size: 18px;
|
39 |
+
margin-bottom: 30px;
|
40 |
+
color: #ecf0f1;
|
|
|
41 |
}
|
42 |
+
|
43 |
.redirect-btn {
|
44 |
display: inline-block;
|
45 |
+
background-color: #00BFAE;
|
46 |
color: white;
|
47 |
+
padding: 12px 30px;
|
48 |
+
border-radius: 30px;
|
49 |
text-decoration: none;
|
50 |
font-size: 18px;
|
51 |
font-weight: bold;
|
52 |
+
transition: background-color 0.3s ease;
|
53 |
+
}
|
54 |
+
|
55 |
+
.redirect-btn:hover {
|
56 |
+
background-color: #1abc9c;
|
57 |
+
}
|
58 |
+
|
59 |
+
footer {
|
60 |
margin-top: 20px;
|
61 |
+
font-size: 16px;
|
62 |
+
color: #bdc3c7;
|
63 |
}
|
64 |
</style>
|
65 |
</head>
|
66 |
<body>
|
67 |
+
<div class="container">
|
68 |
+
<h1>O Domínio do Site Mudou</h1>
|
69 |
+
<p>O nosso site foi movido para um novo domínio. Para continuar acessando, clique no botão abaixo:</p>
|
70 |
+
<a href="https://ip-from-minecraft.vercel.app/" class="redirect-btn" target="_blank">Ir para o Novo Domínio</a>
|
71 |
+
<footer>
|
72 |
+
<p>Se você tiver algum problema, entre em contato conosco.</p>
|
73 |
+
</footer>
|
74 |
</div>
|
|
|
|
|
|
|
75 |
</body>
|
76 |
</html>
|