-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
310 lines (274 loc) · 8.55 KB
/
index.html
File metadata and controls
310 lines (274 loc) · 8.55 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
<!doctype html>
<html lang="ja" dir="ltr">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0" />
<!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=edge" /><![endif]-->
<!-- Settings for social web services (as minimum as possible) -->
<title>DojoCon Japan 2026 - CoderDojo コミュニティのための全国カンファレンス</title>
<meta
name="description"
content="DojoCon Japan とは日本の CoderDojo コミュニティメンバーが全国から集まるカンファレンスイベント (CoderDojo Conference) です。2016年に始まり、毎年1回のペースで開催しています。"
/>
<meta property="og:type" content="website" />
<meta property="og:image" content="https://dojocon2026.coderdojo.jp/images/ogp.png" />
<meta name="twitter:card" content="summary" />
<!-- Settings for web browsers and mobiles like icons -->
<link rel="canonical" href="https://dojocon2026.coderdojo.jp/" />
<link rel="shortlink" href="https://dojocon2026.coderdojo.jp/" />
<link rel="icon" href="/images/coderdojo.svg" sizes="any" type="image/svg+xml" />
<link rel="icon" href="/images/coderdojo.webp" sizes="512" type="image/webp" />
<link rel="icon" href="/favicon.ico" />
<link rel="manifest" href="/site.webmanifest" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<!-- 180x180px -->
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Space+Mono&display=swap" rel="stylesheet" />
<style type="text/css">
html {
scroll-behavior: smooth;
}
body {
font-family: "Roboto", "Noto Sans JP", sans-serif;
margin: 0;
padding: 0;
color: #fff;
overflow-x: hidden;
}
/* ===== Hero Section ===== */
.hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: url("/images/cover-photo.webp") center center / cover no-repeat;
background-color: #002244;
}
.hero-overlay {
position: absolute;
inset: 0;
background: rgba(0, 34, 68, 0.6);
}
.hero-content {
position: relative;
z-index: 1;
text-align: center;
font-family: "Space Mono", monospace;
padding: 2rem 1rem;
}
.hero-logo {
width: clamp(120px, 18vw, 280px);
margin-bottom: 1.5rem;
}
.hero-save-the-date {
font-size: clamp(1.8rem, 6vw, 4.5rem);
font-weight: bold;
letter-spacing: 0.05em;
margin-bottom: 0.8rem;
}
.hero-title {
font-size: clamp(1rem, 3vw, 2rem);
font-weight: normal;
letter-spacing: 0.1em;
margin: 0 0 1.2rem;
opacity: 0.9;
}
.hero-date {
font-size: clamp(1.2rem, 3.5vw, 2.2rem);
font-weight: bold;
margin-bottom: 0.6rem;
}
.hero-venue a {
color: #fff;
text-decoration: underline;
text-underline-offset: 4px;
font-size: clamp(0.9rem, 2.5vw, 1.5rem);
}
.hero-venue a:hover {
opacity: 0.8;
}
.hero-theme {
font-size: clamp(1rem, 2.5vw, 1.4rem);
opacity: 0.85;
margin-top: 2.5rem;
letter-spacing: 0.15em;
}
/* Blink cursor */
.cursor::after {
content: "_";
animation: blink 1s infinite;
}
@keyframes blink {
0%,
50% {
opacity: 0;
}
51%,
100% {
opacity: 1;
}
}
/* Fade-in animation */
.fade-in {
opacity: 0;
transform: translateY(20px);
animation: fadeInUp 0.8s ease forwards;
}
.fade-in:nth-child(1) {
animation-delay: 0.2s;
}
.fade-in:nth-child(2) {
animation-delay: 0.4s;
}
.fade-in:nth-child(3) {
animation-delay: 0.6s;
}
.fade-in:nth-child(4) {
animation-delay: 0.8s;
}
.fade-in:nth-child(5) {
animation-delay: 1s;
}
.fade-in:nth-child(6) {
animation-delay: 1.2s;
}
@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
}
/* ===== Footer Section ===== */
/* ===== Keynote Section ===== */
.keynote {
background: #001a33;
color: #fff;
text-align: center;
padding: 4rem 1rem;
}
.keynote-label {
font-family: "Space Mono", monospace;
font-size: clamp(0.8rem, 2vw, 1rem);
letter-spacing: 0.2em;
opacity: 0.7;
margin-bottom: 0.5rem;
}
.keynote-heading {
font-family: "Space Mono", monospace;
font-size: clamp(1.4rem, 4vw, 2.5rem);
font-weight: bold;
letter-spacing: 0.05em;
margin: 0 0 2.5rem;
}
.keynote-photo {
width: clamp(120px, 20vw, 180px);
height: clamp(120px, 20vw, 180px);
border-radius: 50%;
object-fit: cover;
object-position: top;
margin-bottom: 1.5rem;
}
.keynote-name {
font-size: clamp(1.1rem, 3vw, 1.6rem);
font-weight: bold;
margin: 0 0 0.5rem;
}
.keynote-title {
font-size: clamp(0.85rem, 2vw, 1.1rem);
opacity: 0.8;
margin: 0 0 1.5rem;
}
.keynote-link a {
color: #fff;
text-decoration: underline;
text-underline-offset: 4px;
font-size: clamp(0.8rem, 1.8vw, 1rem);
opacity: 0.8;
}
.keynote-link a:hover {
opacity: 1;
}
.footer {
background: #002244;
color: #fff;
text-align: center;
font-family: "Space Mono", monospace;
padding: 2.5rem 1rem;
}
.footer a {
color: #fff;
text-decoration: none;
opacity: 0.8;
}
.footer a:hover {
opacity: 1;
text-decoration: underline;
}
.footer-links {
font-size: clamp(0.7rem, 1.8vw, 0.95rem);
margin-bottom: 1.5rem;
}
.footer-credit {
font-size: clamp(0.6rem, 1.4vw, 0.8rem);
opacity: 0.6;
line-height: 1.8;
}
</style>
</head>
<body>
<main>
<!-- Hero Section -->
<section class="hero">
<div class="hero-overlay"></div>
<div class="hero-content">
<div class="fade-in">
<img src="/images/logo.webp" class="hero-logo" alt="CoderDojo Logo" />
</div>
<p class="fade-in hero-save-the-date cursor">SAVE THE DATE</p>
<h1 class="fade-in hero-title">DojoCon Japan 2026 in 岩手</h1>
<p class="fade-in hero-date">2026.11.01 SUN</p>
<p class="fade-in hero-venue">
岩手県盛岡市
<a href="https://www.odette.or.jp/plaza-odette/" target="_blank" rel="noopener noreferrer"
>プラザおでって</a
>
</p>
<p class="fade-in hero-theme">テーマ: わかちあう、わかりあう</p>
<p class="fade-in hero-venue" style="margin-top: 2rem">
<a href="#keynote">基調講演についてはこちら ↓</a>
</p>
</div>
</section>
<!-- Keynote Section -->
<section id="keynote" class="keynote">
<p class="keynote-label">KEYNOTE SPEAKER</p>
<h2 class="keynote-heading">基調講演</h2>
<img src="/images/keynote-ueda.jpg" class="keynote-photo" alt="上田 信行" />
<p class="keynote-name">上田 信行 / ウエダノブユキ</p>
<p class="keynote-title">同志社女子大学名誉教授、ネオミュージアム館長</p>
<p class="keynote-link">
<a href="https://nobuyukiueda.com/about" target="_blank" rel="noopener noreferrer">
» プロフィール詳細を見る
</a>
</p>
</section>
</main>
<!-- Footer -->
<footer class="footer">
<div class="footer-links">
<a href="https://dojocon.coderdojo.jp/" rel="noopener noreferrer">
» DojoCon Japan(全国イベント)の開催事例を見る
</a>
</div>
<div class="footer-credit">
<small>
DojoCon Japan 実行委員会<br />
一般社団法人 CoderDojo Japan
</small>
</div>
</footer>
</body>
</html>