-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
513 lines (448 loc) · 15.7 KB
/
Copy pathindex.html
File metadata and controls
513 lines (448 loc) · 15.7 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
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A lightweight, minimal task timer widget for Windows 11. Track time, manage tasks with a simple, distraction-free interface.">
<meta name="keywords" content="task timer, time tracking, productivity, Windows 11, widget, open source">
<meta name="author" content="Melih Celenk">
<title>TaskTimerWidget - Minimal Task Timer for Windows 11</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: #333;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
/* Header */
header {
text-align: center;
padding: 60px 20px;
color: white;
}
.logo {
width: 128px;
height: 128px;
margin: 0 auto 20px;
background: white;
border-radius: 24px;
padding: 10px;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.logo img {
width: 100%;
height: 100%;
object-fit: contain;
}
h1 {
font-size: 3em;
margin-bottom: 10px;
text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.tagline {
font-size: 1.3em;
margin-bottom: 20px;
opacity: 0.95;
}
.badges {
margin: 20px 0;
}
.badges img {
margin: 5px;
height: 20px;
}
.cta-buttons {
margin-top: 30px;
}
.btn {
display: inline-block;
padding: 12px 30px;
margin: 10px;
background: white;
color: #667eea;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.btn-secondary {
background: rgba(255, 255, 255, 0.2);
color: white;
border: 2px solid white;
}
.btn-secondary:hover {
background: white;
color: #667eea;
}
.store-badge {
display: inline-block;
background: transparent;
border-radius: 8px;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
line-height: 0;
}
.store-badge:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.store-badge img {
display: block;
}
.btn-outline {
background: transparent;
color: #667eea;
border: 2px solid #667eea;
}
.btn-outline:hover {
background: #667eea;
color: white;
}
/* Main Content */
main {
background: white;
border-radius: 12px 12px 0 0;
padding: 60px 20px;
}
section {
margin-bottom: 60px;
}
h2 {
font-size: 2em;
margin-bottom: 30px;
text-align: center;
color: #2c3e50;
}
/* Screenshots Carousel */
.carousel-container {
position: relative;
max-width: 800px;
margin: 30px auto;
overflow: hidden;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.carousel {
display: flex;
transition: transform 0.5s ease-in-out;
}
.screenshot-item {
min-width: 100%;
text-align: center;
padding: 20px;
background: #f8f9fa;
}
.screenshot-item img {
width: 100%;
max-width: 700px;
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.screenshot-item p {
margin-top: 15px;
color: #333;
font-size: 1.1em;
font-weight: 500;
}
/* Carousel Controls */
.carousel-dots {
text-align: center;
margin-top: 20px;
}
.dot {
display: inline-block;
width: 12px;
height: 12px;
margin: 0 6px;
background: #ccc;
border-radius: 50%;
cursor: pointer;
transition: all 0.3s ease;
}
.dot.active {
background: #667eea;
width: 30px;
border-radius: 6px;
}
.dot:hover {
background: #764ba2;
}
/* Features */
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}
.feature {
padding: 30px;
background: #f8f9fa;
border-radius: 8px;
text-align: center;
transition: all 0.3s ease;
}
.feature:hover {
background: #667eea;
color: white;
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}
.feature h3 {
margin-bottom: 10px;
font-size: 1.3em;
}
.feature-icon {
font-size: 3em;
margin-bottom: 15px;
}
/* Download Section */
.download-section {
text-align: center;
padding: 60px 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border-radius: 12px;
margin: 40px 0;
}
.download-section h2 {
color: white;
}
.download-section .btn {
font-size: 1.2em;
padding: 15px 40px;
margin-top: 20px;
}
/* Footer */
footer {
text-align: center;
padding: 40px 20px;
background: #2c3e50;
color: white;
}
footer a {
color: #3498db;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
/* Responsive */
@media (max-width: 768px) {
h1 {
font-size: 2em;
}
.tagline {
font-size: 1.1em;
}
.screenshots {
grid-template-columns: 1fr;
}
.features {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<div class="container">
<!-- Header -->
<header>
<div class="logo">
<img src="assets/icons/app-icon-256.png" alt="TaskTimerWidget Logo">
</div>
<h1>TaskTimerWidget</h1>
<p class="tagline">A lightweight, minimal task timer widget for Windows 11</p>
<p>Manage your tasks and track time with a simple, distraction-free interface.</p>
<div class="badges">
<img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License: MIT">
<img src="https://img.shields.io/badge/platform-Windows%2011-blue.svg" alt="Platform: Windows 11">
<img src="https://img.shields.io/badge/.NET-8.0-purple.svg" alt=".NET 8.0">
<img src="https://img.shields.io/badge/WinUI-3-brightgreen.svg" alt="WinUI 3">
</div>
<div style="margin: 30px 0;">
<a href="https://apps.microsoft.com/detail/9NF0N9LN349G" class="store-badge">
<img src="https://get.microsoft.com/images/en-us%20light.svg" alt="Download from Microsoft Store" style="height: 54px;">
</a>
</div>
<div class="cta-buttons">
<a href="https://github.com/melihcelenk/TaskTimerWidget" class="btn">View on GitHub</a>
<a href="https://github.com/melihcelenk/TaskTimerWidget/releases" class="btn btn-secondary">Download Release</a>
</div>
</header>
<!-- Main Content -->
<main>
<!-- Screenshots Carousel -->
<section id="screenshots">
<h2>📸 Screenshots</h2>
<div class="carousel-container">
<div class="carousel" id="carousel">
<div class="screenshot-item">
<img src="assets/screenshots/screenshot-1.png" alt="Normal Mode">
<p>Normal mode with multiple tasks</p>
</div>
<div class="screenshot-item">
<img src="assets/screenshots/screenshot-3.png" alt="Rename Feature">
<p>Inline rename feature - right-click to edit</p>
</div>
<div class="screenshot-item">
<img src="assets/screenshots/screenshot-2.png" alt="Compact Mode">
<p>Compact mode - shows only active task</p>
</div>
</div>
</div>
<div class="carousel-dots" id="dots">
<span class="dot active" onclick="currentSlide(0)"></span>
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
</div>
</section>
<!-- Features -->
<section id="features">
<h2>✨ Features</h2>
<div class="features">
<div class="feature">
<div class="feature-icon">⚡</div>
<h3>Minimal Design</h3>
<p>Widget-sized window that doesn't take up much space on your desktop</p>
</div>
<div class="feature">
<div class="feature-icon">📝</div>
<h3>Task Management</h3>
<p>Create, delete, rename, and reorder tasks with drag-and-drop</p>
</div>
<div class="feature">
<div class="feature-icon">⏱️</div>
<h3>Built-in Timer</h3>
<p>Track elapsed time for each task with real-time updates</p>
</div>
<div class="feature">
<div class="feature-icon">🎨</div>
<h3>Active Highlighting</h3>
<p>Yellow highlight shows which task is currently active</p>
</div>
<div class="feature">
<div class="feature-icon">💾</div>
<h3>Persistent Storage</h3>
<p>All tasks saved locally - no internet connection required</p>
</div>
<div class="feature">
<div class="feature-icon">🪶</div>
<h3>Lightweight</h3>
<p>Minimal resource usage - runs smoothly in the background</p>
</div>
<div class="feature">
<div class="feature-icon">📊</div>
<h3>Time Percentage</h3>
<p>See each task's percentage of total time tracked</p>
</div>
<div class="feature">
<div class="feature-icon">🔝</div>
<h3>Always On Top</h3>
<p>Optional compact mode keeps widget visible while you work</p>
</div>
</div>
</section>
<!-- Download Section -->
<div class="download-section">
<h2>🚀 Get Started</h2>
<p>Open source and free to use. Available now!</p>
<a href="https://github.com/melihcelenk/TaskTimerWidget/releases" class="btn">Download Latest Release</a>
<br><br>
<p style="font-size: 0.9em; opacity: 0.9;">
Windows Store submission coming soon
</p>
</div>
<!-- Additional Info -->
<section>
<h2>📚 Learn More</h2>
<div style="text-align: center;">
<p style="margin-bottom: 20px;">
<a href="https://github.com/melihcelenk/TaskTimerWidget#readme" class="btn">Documentation</a>
<a href="PRIVACY_POLICY.html" class="btn btn-outline">Privacy Policy</a>
</p>
<p style="color: #666;">
Built with .NET 8.0 and WinUI 3 • Licensed under MIT License
</p>
</div>
</section>
</main>
<!-- Footer -->
<footer>
<p>
Made with ❤️ by <a href="https://github.com/melihcelenk" target="_blank">Melih Celenk</a>
</p>
<p style="margin-top: 10px; font-size: 0.9em; opacity: 0.8;">
© 2025 TaskTimerWidget •
<a href="https://github.com/melihcelenk/TaskTimerWidget">GitHub</a> •
<a href="PRIVACY_POLICY.html">Privacy Policy</a>
</p>
</footer>
</div>
<script>
// Carousel functionality
let currentSlideIndex = 0;
const carousel = document.getElementById('carousel');
const dots = document.querySelectorAll('.dot');
const totalSlides = 3;
let autoSlideInterval;
function showSlide(index) {
currentSlideIndex = index;
// Wrap around
if (currentSlideIndex >= totalSlides) {
currentSlideIndex = 0;
}
if (currentSlideIndex < 0) {
currentSlideIndex = totalSlides - 1;
}
// Move carousel
const offset = -currentSlideIndex * 100;
carousel.style.transform = `translateX(${offset}%)`;
// Update dots
dots.forEach((dot, i) => {
dot.classList.toggle('active', i === currentSlideIndex);
});
}
function currentSlide(index) {
showSlide(index);
resetAutoSlide();
}
function nextSlide() {
showSlide(currentSlideIndex + 1);
}
function startAutoSlide() {
autoSlideInterval = setInterval(nextSlide, 5000); // 5 seconds
}
function resetAutoSlide() {
clearInterval(autoSlideInterval);
startAutoSlide();
}
// Start auto-sliding when page loads
window.addEventListener('DOMContentLoaded', () => {
startAutoSlide();
});
// Pause on hover
const carouselContainer = document.querySelector('.carousel-container');
carouselContainer.addEventListener('mouseenter', () => {
clearInterval(autoSlideInterval);
});
carouselContainer.addEventListener('mouseleave', () => {
startAutoSlide();
});
</script>
</body>
</html>