-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (89 loc) · 2.5 KB
/
index.html
File metadata and controls
91 lines (89 loc) · 2.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Event Calendars</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
max-width: 800px;
margin: 40px auto;
padding: 0 20px;
line-height: 1.6;
color: #333;
}
h1 {
color: #2c3e50;
border-bottom: 3px solid #3498db;
padding-bottom: 10px;
}
.calendar-list {
list-style: none;
padding: 0;
}
.calendar-item {
background: #f8f9fa;
border-left: 4px solid #3498db;
padding: 20px;
margin: 15px 0;
border-radius: 4px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.calendar-name {
font-size: 1.3em;
font-weight: bold;
color: #2c3e50;
margin-bottom: 10px;
}
.calendar-links {
display: flex;
gap: 15px;
flex-wrap: wrap;
}
.calendar-link {
color: #3498db;
text-decoration: none;
padding: 8px 16px;
border: 2px solid #3498db;
border-radius: 4px;
transition: all 0.3s;
}
.calendar-link:hover {
background: #3498db;
color: white;
}
.calendar-link.ics {
color: #27ae60;
border-color: #27ae60;
}
.calendar-link.ics:hover {
background: #27ae60;
color: white;
}
.footer {
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #e0e0e0;
color: #7f8c8d;
font-size: 0.9em;
text-align: center;
}
</style>
</head>
<body>
<h1>📅 Event Calendars</h1>
<ul class="calendar-list">
<li class="calendar-item">
<div class="calendar-name">2026 Outdoor Termine</div>
<div class="calendar-links">
<a href="2026 Outdoor Termine.html" class="calendar-link">📄 View Calendar</a>
<a href="2026 Outdoor Termine.ics" class="calendar-link ics" download>📥 Download iCal</a>
</div>
</li>
</ul>
<div class="footer">
Generated automatically by mdcal
</div>
</body>
</html>