-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (80 loc) · 2.46 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gestión de Contenedores con Podman - OpenWebinars</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
body {
font-family: 'Lato', sans-serif;
background: linear-gradient(135deg, #0c0720 0%, #231048 50%, #3b187b 100%);
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
color: #ffffff;
text-align: center;
overflow: hidden;
}
.logo {
position: absolute;
top: 20px;
display: flex;
justify-content: center;
width: 100%;
}
.logo img {
max-height: 60px;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 10px;
padding: 40px 20px;
backdrop-filter: blur(10px);
box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}
h1 {
font-size: 26px;
font-weight: 700;
margin-bottom: 20px;
}
ul {
list-style-type: none;
padding: 0;
}
ul li {
margin: 15px 0;
}
a {
color: #ff4c60;
text-decoration: none;
font-size: 18px;
font-weight: 700;
transition: color 0.3s ease;
}
a:hover {
color: #ff6b80; /* Un tono más claro para el hover */
}
</style>
</head>
<body>
<div class="logo">
<img src="https://openwebinars.net/_astro/logo.BQ5-i6yf_2PWs8.svg" alt="Logo OpenWebinars">
</div>
<div class="container">
<h1>Gestión de contenedores con Podman</h1>
<ul>
<li><a href="https://github.com/OpenWebinarsNet/curso_podman_ow" target="_blank">Repositorio principal</a></li>
<li><a href="https://github.com/OpenWebinarsNet/ejemplos_curso_podman_ow" target="_blank">Repositorio con el código de los ejemplos</a></li>
</ul>
</div>
</body>
</html>