-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
182 lines (156 loc) · 5.01 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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Información de Alumno</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #e0f7fa;
display: flex;
justify-content: center;
align-items: center;
height: 150vh;
margin: 0;
animation: fadeIn 1.5s ease;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.container {
background-color: #ffffff;
padding: 50px 30px 30px;
border-radius: 15px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
width: 350px;
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
margin-top: 20px;
}
.container:hover {
transform: translateY(-10px);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
.header img {
width: 80px;
height: 80px;
margin-bottom: 10px;
}
h1 {
font-size: 1.8em;
color: #00796b;
margin-top: 10px;
margin-bottom: 20px;
}
.avatar {
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 15px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.info, .activities, .emergency {
margin-top: 20px;
background-color: #f0f4c3;
padding: 15px;
border-radius: 10px;
transition: background-color 0.3s ease;
}
.info:hover, .activities:hover, .emergency:hover {
background-color: #e6ee9c;
}
.info p, .activities p, .emergency p {
margin: 5px 0;
font-size: 1.1em;
}
.info p strong, .activities h2, .emergency h2 {
color: #00796b;
}
.activities ul {
list-style: none;
padding: 0;
}
.activities ul li {
background-color: #b2dfdb;
margin: 5px 0;
padding: 10px;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.activities ul li:hover {
background-color: #80cbc4;
}
.footer {
margin-top: 20px;
font-size: 0.9em;
color: #555;
}
/* Estilos para el dropdown */
.dropdown-content {
display: none;
margin-top: 10px;
text-align: left;
}
.dropdown h2 {
cursor: pointer;
display: inline-block;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<img src="https://steduexneusis01.blob.core.windows.net/publico/colegio_742/logo.jpg?_t=638637954357322099" alt="Logo Colegio">
<h1>Colegio Los Olivos</h1>
</div>
<img src="https://img.freepik.com/free-vector/open-blue-umbrella-isolated_1308-78675.jpg?t=st=1728198811~exp=1728202411~hmac=5d7907cf4c3455b156df925a2ba70129178301f7de1520a0ebb5e9ca4cbdd302&w=740" height="100px" alt="Logo Paraguas">
<div class="info">
<img src="20241008_130428.jpg" alt="Avatar del Alumno" class="avatar">
<p><strong>Alumno/a:</strong> Alejandro Soares Márquez</p>
<p><strong>Clase:</strong> 1º D</p>
<p><strong>Seño:</strong> Vero</p>
</div>
<div class="activities">
<h2>Actividades Extraescolares</h2>
<p><strong>Lunes, Martes y Jueves:</strong></p>
<ul>
<li>Psicomotricidad</li>
<li>Comedor</li>
<li>Siesta</li>
</ul>
<p><strong>Miércoles y Viernes:</strong></p>
<ul>
<li>Comedor</li>
<li>Cuentacuentos</li>
</ul>
</div>
<!-- Sección de contacto de emergencia en dropdown -->
<div class="emergency dropdown">
<h2 onclick="toggleDropdown()">Contacto de Emergencia</h2>
<div class="dropdown-content">
<p><strong>Nombre:</strong> Joaquim Soares</p>
<p><strong>Relación:</strong> Padre</p>
<p><strong>Teléfono:</strong> +34 600 032 256</p>
<br>
<p><strong>Nombre:</strong> Esperanza Marquez</p>
<p><strong>Relación:</strong> Madre</p>
<p><strong>Teléfono:</strong> +34 637 391 679</p>
</div>
<div class="dropdown-content">
</div>
</div>
<div class="footer">
<p>© 2024 Colegio Los Olivos</p>
</div>
</div>
<script>
function toggleDropdown() {
const content = document.querySelector('.dropdown-content');
content.style.display = content.style.display === 'none' || content.style.display === '' ? 'block' : 'none';
}
</script>
</body>
</html>