-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathold_index.html
More file actions
365 lines (361 loc) · 13.2 KB
/
old_index.html
File metadata and controls
365 lines (361 loc) · 13.2 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
<!DOCTYPE html>
<html>
<head>
<title>Madeira Travel Guide</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.css"/>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick-theme.min.css"/>
<style>
body {
font-family: 'Roboto', sans-serif;
background: url('https://cesarvigario.github.io/madeira/images/madeira-view.jpg') no-repeat center center fixed;
background-size: cover;
margin: 0;
padding: 0;
color: #fff;
}
.carousel {
max-width: 640px; /* 80% of 800px */
margin: 20px auto;
padding: 0 20px;
}
.carousel .slick-slide {
height: 320px; /* 80% of 400px */
display: flex;
align-items: center;
justify-content: center;
}
.carousel img {
width: 100%;
height: 100%;
object-fit: cover; /* Ensures images cover the entire slide without stretching */
border-radius: 10px;
}
.container {
max-width: 900px;
margin: 40px auto;
padding: 20px;
background-color: rgba(0, 0, 0, 0.8);
border-radius: 10px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
transition: transform 0.3s;
}
.container:hover {
transform: scale(1.02);
}
.tabs {
display: flex;
justify-content: space-around;
margin-bottom: 20px;
}
.tab-button {
padding: 10px 20px;
background-color: rgba(255, 255, 255, 0.1);
border: none;
border-radius: 5px;
cursor: pointer;
color: #ffcc00;
font-weight: bold;
transition: background-color 0.3s, transform 0.3s;
}
.tab-button:hover, .tab-button.active {
background-color: rgba(255, 255, 255, 0.2);
}
.tab-content {
display: none;
}
.tab-content.active {
display: block;
}
h1, h2 {
text-align: center;
margin: 0;
padding-bottom: 20px;
color: #ffcc00;
}
h1 {
font-size: 2.5em;
}
.section {
margin-bottom: 20px;
}
.section-title {
font-weight: bold;
margin-bottom: 10px;
font-size: 1.5em;
background: linear-gradient(to right, #ffcc00, #ff9900);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.list {
list-style: none;
padding: 0;
margin: 0;
}
.list-item {
margin-bottom: 10px;
padding: 10px;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 5px;
transition: background-color 0.3s, transform 0.3s;
}
.list-item:before {
content: "\2022";
margin-right: 10px;
color: #ffcc00;
}
.list-item:hover {
background-color: rgba(255, 255, 255, 0.2);
transform: translateX(5px);
}
table {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
}
</style>
</head>
<body>
<div class="carousel">
<div><img src="https://cesarvigario.github.io/madeira/images/madeira1.jpg" alt="Madeira Image 1"></div>
<div><img src="https://cesarvigario.github.io/madeira/images/madeira2.jpg" alt="Madeira Image 2"></div>
<div><img src="https://cesarvigario.github.io/madeira/images/madeira3.jpg" alt="Madeira Image 3"></div>
<div><img src="https://cesarvigario.github.io/madeira/images/madeira4.jpg" alt="Madeira Image 4"></div>
<div><img src="https://cesarvigario.github.io/madeira/images/madeira5.jpg" alt="Madeira Image 5"></div>
<div><img src="https://cesarvigario.github.io/madeira/images/madeira6.jpg" alt="Madeira Image 6"></div>
<div><img src="https://cesarvigario.github.io/madeira/images/madeira7.jpg" alt="Madeira Image 7"></div>
<div><img src="https://cesarvigario.github.io/madeira/images/madeira8.jpg" alt="Madeira Image 8"></div>
<div><img src="https://cesarvigario.github.io/madeira/images/madeira9.jpg" alt="Madeira Image 9"></div>
<div><img src="https://cesarvigario.github.io/madeira/images/madeira10.jpg" alt="Madeira Image 10"></div>
<div><img src="https://cesarvigario.github.io/madeira/images/madeira11.jpg" alt="Madeira Image 11"></div>
<div><img src="https://cesarvigario.github.io/madeira/images/madeira12.jpg" alt="Madeira Image 12"></div>
</div>
<div class="container">
<h1>Programação Madeira</h1>
<section id="schedule">
<h2>Itinerário Diário</h2>
<table>
<tr>
<th>Dias</th>
<th>1 (Quinta)</th>
<th>2 (Sexta)</th>
<th>3 (Sábado)</th>
<th>4 (Domingo)</th>
<th>5 (Segunda)</th>
<th>6 (Terça)</th>
<th>7 (Quarta)</th>
<th>8 (Quinta)</th>
</tr>
<tr>
<td>Saída de casa</td>
<td>08h00 chegam à Madeira JP</td>
<td>Lili: 09h30<br>João: 09h15</td>
<td>Lili: 09h00<br>João: 08h30</td>
<td>Lili: 08h20<br>João: 08h00</td>
<td>Lili: 07h45<br>João: 08h10</td>
<td>Lili:10h00<br>João: 10h00</td>
<td>09h30<br>Check out</td>
<td></td>
</tr>
<tr>
<td>Manhã</td>
<td>
<ul>
<li>MUSEU CR7 (abre às 10h00)</li>
</ul>
</td>
<td>
<ul>
<li>Poço dos chefes curral das freiras (24MIN ATÉ CASA)</li>
</ul>
</td>
<td>
<ul>
<li>Parque florestal das queimadas (passeio)</li>
<li>Porto Moniz</li>
<li>Teleférico das achadas da cruz (23 MINUTOS)</li>
<li>Piscinas naturais do Porto Moniz (A PÉ 8 MIN)</li>
</ul>
</td>
<td>
<ul>
<li>Piscinas naturais velhas</li>
<li>Cabo girão</li>
</ul>
</td>
<td>
<ul>
<li>Museu da baleia</li>
<li>Mercado dos lavradores (abertura às 07h00) (23 MIN DO AEROPORTO)</li>
<li>De seguida ir a um hipermercado fazer compras para as refeições</li>
<li>Sugestão caso tenham que fazer tempo: Praia da calheta (11 MIN CASA MÃO CHEIA)</li>
</ul>
</td>
<td>
<ul>
<li>Parque temático de santana</li>
</ul>
</td>
<td></td>
<td></td>
</tr>
<tr>
<td>Almoço</td>
<td>
<ul>
<li>14h00 check in casa</li>
<li>Casa do bolo do caco</li>
</ul>
</td>
<td>
<ul>
<li>Piquenique (Sugestão: Frango churrasco comprado no dia anterior no continente mais salada e pão)</li>
</ul>
</td>
<td>
<ul>
<li>Piquenique (sugestão: Pão com paté ou quiche já comprada no continente)</li>
</ul>
</td>
<td>
<ul>
<li>Piquenique (Sugestão: -Wraps com Ovos cozidos, salsichas, Alface)</li>
</ul>
</td>
<td>
<ul>
<li>SNACK BAR Balcony (picadinho da madeira, caco... etc)</li>
</ul>
</td>
<td>
<ul>
<li>Muralhas bar</li>
</ul>
</td>
<td>12h00 aeroporto madeira família P.V</td>
<td></td>
</tr>
<tr>
<td>Tarde</td>
<td>
<ul>
<li>15H chegada à Madeira</li>
<li>15h00 NAU COLOMBO check in 14h30 -- 15h às 18h00</li>
</ul>
</td>
<td>
<ul>
<li>Carreiros do Monte - Descida Carro de Cestos</li>
<li>Camacha (fecha às 18h) (38 MINUTOS)</li>
</ul>
</td>
<td>
<ul>
<li>Jardim botânico da Madeira (9min)</li>
</ul>
</td>
<td>
<ul>
<li>Praia do faial (20 min)</li>
</ul>
</td>
<td>
<ul>
<li>Praia do Machico (distância de carro 10 min)</li>
<li>Piscinas Naturais do Seixal, Seixal (distância de carro 4 minutos)</li>
<li>Cascata véu da Noiva (20 min)</li>
</ul>
</td>
<td>
<ul>
<li>Quinta vigia (Residência oficial do presidente da Madeira) 16h00</li>
</ul>
</td>
<td>
<ul>
<li>Praia do Machico (2/3 min)</li>
<li>Ou Complexo Balnear do Lido</li>
</ul>
</td>
<td>
<ul>
<li>Parque Desportivo andorinha (25 MIN AEROPORTO)</li>
</ul>
</td>
</tr>
<tr>
<td>Extras</td>
<td>
<ul>
<li>CR7 football playground (12 min)</li>
<li>Se der tempo: Mercado dos lavradores fecha às 19h00</li>
<li>Caso se tenha tempo e acabar o dia na praia de vigário</li>
<li>Por fim passar na taberna da poncha</li>
</ul>
</td>
<td>
<ul>
<li>18h00 aeroporto madeira família JP</li>
</ul>
</td>
<td>
<ul>
<li>LILI: Mercado dos lavradores</li>
</ul>
</td>
<td>
<ul>
<li>Jantar</li>
<li>Cada um na sua casa (Para dormirem o suficiente para a semana inteira)</li>
</ul>
</td>
<td>
<ul>
<li>Casa do farol (câmara de lobos) --> Beber a melhor poncha e niquita à pescador)</li>
</ul>
</td>
<td>
<ul>
<li>Cada um na sua casa</li>
</ul>
</td>
<td>
<ul>
<li>Restaurante praia dos reis magos (comer peixe espada) (20 MIN)</li>
<li>E após jantar ver o Cristo Rei (8 MIN)</li>
</ul>
</td>
<td>
<ul>
<li>Cada um na sua casa</li>
</ul>
</td>
</tr>
</table>
</section>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.carousel').slick({
dots: true,
infinite: true,
speed: 300,
slidesToShow: 1,
adaptiveHeight: true,
autoplay: true,
autoplaySpeed: 2000,
arrows: true
});
$('.tab-button').click(function() {
var tab_id = $(this).attr('data-tab');
$('.tab-button').removeClass('active');
$('.tab-content').removeClass('active');
$(this).addClass('active');
$("#" + tab_id).addClass('active');
});
});
</script>
</body>
</html>