-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtaller-linux.html
More file actions
375 lines (330 loc) · 9.7 KB
/
taller-linux.html
File metadata and controls
375 lines (330 loc) · 9.7 KB
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Taller de Instalación de Linux - Robotech Asociación</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
:root {
--negro: #1a1a1a;
--blanco: #fff;
--rojo: #fd0010;
--rojo-oscuro: #c9000c;
--gris-claro: #f8f9fa;
--gris-medio: #e0e0e0;
--sombra: rgba(0, 0, 0, 0.15);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
background-color: var(--gris-claro);
color: var(--negro);
display: flex;
flex-direction: column;
min-height: 100vh;
}
header {
background: linear-gradient(135deg, var(--rojo), var(--rojo-oscuro));
color: var(--blanco);
text-align: center;
padding: 20px;
box-shadow: 0 4px 12px var(--sombra);
}
.hero {
position: relative;
background: url('https://images.unsplash.com/photo-1516321310766-61b7b8c99e01?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center/cover;
padding: 80px 20px;
color: var(--blanco);
text-align: center;
margin-bottom: 40px;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 1;
}
.hero-content {
position: relative;
z-index: 2;
display: flex;
flex-direction: column;
align-items: center;
}
.hero h1 {
font-size: 2.8rem;
margin-bottom: 15px;
animation: fadeInDown 1s ease-out;
}
.logo {
width: 200px;
height: auto;
margin-top: 10px;
filter: drop-shadow(0 2px 4px var(--sombra));
}
nav {
margin-top: 20px;
background: var(--blanco);
padding: 15px;
border-radius: 50px;
box-shadow: 0 2px 8px var(--sombra);
}
nav ul {
display: flex;
justify-content: center;
flex-wrap: wrap;
list-style: none;
gap: 15px;
}
nav a {
display: flex;
align-items: center;
gap: 8px;
background: linear-gradient(90deg, var(--rojo), var(--rojo-oscuro));
color: var(--blanco);
text-decoration: none;
padding: 12px 25px;
border-radius: 25px;
font-weight: 500;
transition: all 0.3s ease;
}
nav a:hover {
background: linear-gradient(90deg, var(--rojo-oscuro), var(--rojo));
transform: translateY(-2px);
}
main {
flex: 1;
padding: 40px 20px;
max-width: 800px;
margin: 0 auto;
}
.section {
background-color: var(--blanco);
padding: 30px;
border-radius: 20px;
box-shadow: 0 4px 12px var(--sombra);
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px var(--sombra);
}
.section h2 {
color: var(--rojo);
margin-bottom: 15px;
font-size: 1.8rem;
}
.section i {
font-size: 2.5rem;
color: var(--rojo);
margin-bottom: 10px;
}
.section ul {
list-style: none;
margin: 20px 0;
text-align: left;
}
.section ul li {
margin-bottom: 10px;
}
.section a {
color: var(--rojo);
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}
.section a:hover {
color: var(--rojo-oscuro);
}
.cta-button {
display: inline-block;
background-color: var(--rojo);
color: var(--blanco) !important; /* Ensure text is always white */
padding: 12px 30px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: background-color 0.3s ease, transform 0.3s ease;
}
.cta-button:hover {
background-color: var(--rojo-oscuro);
color: var(--blanco) !important; /* Ensure text remains white on hover */
transform: scale(1.05);
}
.popup {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: var(--blanco);
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 12px var(--sombra);
z-index: 1000;
text-align: center;
}
.popup.show {
display: block;
}
.popup p {
margin-bottom: 20px;
color: var(--negro);
}
.popup button {
background-color: var(--rojo);
color: var(--blanco);
border: none;
padding: 10px 20px;
border-radius: 25px;
cursor: pointer;
font-weight: 500;
transition: background-color 0.3s ease;
}
.popup button:hover {
background-color: var(--rojo-oscuro);
}
.overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 999;
}
.overlay.show {
display: block;
}
footer {
background-color: var(--gris-medio);
color: var(--negro);
text-align: center;
padding: 20px;
font-size: 0.8rem;
}
.social-icons {
margin-top: 10px;
}
.social-icons a {
color: var(--rojo);
margin: 0 8px;
font-size: 1rem;
transition: color 0.3s ease;
}
.social-icons a:hover {
color: var(--rojo-oscuro);
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@media (min-width: 768px) {
.hero h1 {
font-size: 3.5rem;
}
.logo {
width: 250px;
}
}
@media (min-width: 1024px) {
nav ul {
gap: 30px;
}
.section {
padding: 40px;
}
.logo {
width: 300px;
}
}
</style>
</head>
<body>
<header>
<div class="hero">
<div class="hero-content">
<h1>Taller de Instalación de Linux</h1>
<img src="./img/logo_no_underscore.png" alt="Logo Robotech" class="logo">
</div>
</div>
<nav>
<ul>
<li><a href="acogida.html"><i class="fas fa-home"></i> Inicio</a></li>
<li><a href="taller-shell.html"><i class="fas fa-terminal"></i> Taller Shell y Git</a></li>
<li><a href="https://forms.office.com/e/1vMng2vBzd"><i class="fas fa-users"></i> Forma Parte</a></li>
<li><a href="index.html"><i class="fas fa-globe"></i> Visita Nuestra Web</a></li>
</ul>
</nav>
</header>
<main>
<section class="section">
<i class="fas fa-laptop-code"></i>
<h2>Taller de Instalación de Linux</h2>
<p>Aprende a instalar y configurar sistemas Linux con nuestro taller práctico. Ideal para principiantes y entusiastas.</p>
<ul>
<li><a href="https://rufus.ie/" target="_blank">Descarga Rufus</a> - Herramienta para crear USBs booteables.</li>
<li><a href="https://ubuntu.com/download/desktop" target="_blank">Descarga Ubuntu 24.04 ISO</a> - Imagen oficial de Ubuntu.</li>
<li><a href="materials_acogida/linux.pdf" target="_blank">Presentación del Taller</a> - Material de apoyo en PDF.</li>
<li><a href="https://robotech-urjc.github.io/control-talleress/attendee.html" target="_blank">Control de asistencia</a> - El código se entregará en el aula el día del taller.</li>
<li><a href="https://forms.office.com/e/TheHVPHD35" target="_blank">Encuesta de satisfacción</a> - Ayúdanos a mejorar.</li>
<li><a href="https://forms.office.com/e/pWhGJ3WHyT" target="_blank" class="cta-button" class="registration-button">Inscríbete Ahora</a></li>
</ul>
</section>
</main>
<div class="overlay" id="overlay"></div>
<div class="popup" id="popup">
<p>Lo sentimos, este enlace está temporalmente bloqueado.</p>
<button onclick="closePopup()">Cerrar</button>
</div>
<footer id="contact">
<h2>Ponte en contacto con nosotros</h2>
<div class="social-icons">
<a href="https://twitter.com/robotech_urjc"><i class="fab fa-twitter"></i> robotech_urjc</a>
<a href="mailto:asociacion.robotech@urjc.es"><i class="fas fa-envelope"></i> asociacion.robotech@urjc.es</a>
<a href="https://github.com/robotech-urjc"><i class="fab fa-github"></i> robotech-urjc</a>
<a href="https://www.instagram.com/robotech_urjc"><i class="fab fa-instagram"></i> robotech_urjc</a>
<a href="https://es.linkedin.com/company/robotech-urjc"><i class="fab fa-linkedin"></i> robotech-urjc</a>
<a href="https://linktr.ee/Robotech_URJC"><i class="fas fa-info-circle"></i> Más información</a>
</div>
<p>© 2025 Robotech URJC.</p>
</footer>
<script>
function showPopup() {
document.getElementById('popup').classList.add('show');
document.getElementById('overlay').classList.add('show');
}
function closePopup() {
document.getElementById('popup').classList.remove('show');
document.getElementById('overlay').classList.remove('show');
}
// Add event listeners to registration buttons
/*
document.querySelectorAll('.registration-button').forEach(button => {
button.addEventListener('click', (e) => {
e.preventDefault();
showPopup();
});
});
*/
</script>
</body>
</html>