-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
158 lines (140 loc) · 4.47 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Misa Client</title>
<style>
body {
background-image: url('./bg.jpg'); /* Cambia 'minecraft_background.jpg' por la URL de tu imagen de fondo */
background-size: cover;
font-family: Arial, sans-serif;
color: #fff;
text-align: center;
margin: 0;
padding: 0;
}
#container {
background-color: rgba(0, 0, 0, 0.7); /* Fondo semitransparente para hacer que el contenido sea legible */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
h1 {
font-size: 36px;
}
p {
font-size: 18px;
}
:root {
--bg-color: rgb(30, 30, 30);
--border-color: rgb(40, 18, 18);
--primary-green: rgb(0, 140, 69);
--light-green: rgb(39, 206, 64);
--medium-dark-green: rgb(12 110 61);
--dark-green: rgb(6, 77, 42);
--border-color: rgb(40, 18, 18);
--text-color: white;
--primary-hover: rgb(10, 152, 80);
--bg-color-disabled: rgb(30, 30, 30);
--border-color-disabled: rgb(40, 18, 18);
--primary-green-disabled: rgb(189, 189, 189);
--light-green-disabled: rgb(193, 193, 193);
--medium-dark-green-disabled: rgb(83, 83, 83);
--dark-green-disabled: rgb(77, 77, 77);
--border-color-disabled: rgb(40, 18, 18);
--text-color-disabled: #c1c1c1;
--primary-hover-disabled: rgb(155, 155, 155);
}
@font-face{font-family:minecraft;font-style:normal;font-weight:400;src:local('Minecraft'),url('./fonts/MinecraftTen-VGORe.ttf') format('woff')}
.minecraft-button {
font-family: 'Minecraft', sans-serif;
font-size: 2.5rem;
text-decoration: none;
text-align: center;
text-shadow: var(--dark-green) 0 .1em 0;
color: var(--text-color);
background-color: var(--primary-green);
position: relative;
width: 15em;
padding-bottom: .3em;
border-radius: .1rem;
}
.minecraft-button::before {
content: '';
position: absolute;
top: 0;
left: -.175em;
width: 102.5%;
height: 100%;
background-color: var(--medium-dark-green);
z-index: -1;
border: .07em solid var(--border-color);
}
.minecraft-button::after {
content: '';
position: absolute;
top: -0.175em;
left: 0;
width: 100%;
height: 125%;
background-image: linear-gradient(
var(--light-green) 50%,
var(--dark-green)
);
z-index: -1;
border: .07em solid var(--border-color);
}
.minecraft-button:hover {
background-color: var(--primary-hover);
color: #fff;
}
.minecraft-button.disabled {
background-color: var(--primary-green-disabled);
text-shadow: var(--dark-green-disabled) 0 .1em 0;
}
.minecraft-button.disabled::before {
background-color: var(--medium-dark-green-disabled);
border: .07em solid var(--border-color-disabled);
}
.minecraft-button.disabled::after {
border: .07em solid var(--border-color-disabled);
background-image: linear-gradient(
var(--light-green-disabled) 50%,
var(--dark-green-disabled)
);
}
.minecraft-button.disabled:hover {
background-color: var(--primary-hover-disabled);
color: #fff;
}
body {
background-color: #1f1f1f;
animation: fadeInAnimation ease 3s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
</style>
</head>
<body>
<div id="container">
<div style="margin-bottom: 10px;">
<img style="width: 100%;" src="./logo.svg" alt="">
</div>
<p style="width: 650px;">
El siguiente archivo es un cliente que te conectará con el servidor de Minecraft, dicho cliente mantendrá tu juego actualizado a todas las mejoras.
</p>
<a href="https://mega.nz/file/AU8nGJ6D#pUzxPwNafJLMtMAgREhcAnw7ZJ0JxgXz97T5ZNLldug" target="_blank" class='minecraft-button'>Descargar Launcher v1.0.26a</a>
</div>
</body>
</html>