Skip to content

Commit e4bde06

Browse files
Simplify webpage
1 parent 64a97e7 commit e4bde06

1 file changed

Lines changed: 45 additions & 45 deletions

File tree

index.html

Lines changed: 45 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,46 @@
7777
height: 80px; /* Smaller on mobile */
7878
width: 100%;
7979
}
80+
81+
nav ul {
82+
display: none;
83+
flex-direction: column;
84+
position: absolute;
85+
top: 60px;
86+
left: 0;
87+
width: 100%;
88+
background: #0A4D68;
89+
padding: 20px;
90+
}
91+
92+
nav ul.active {
93+
display: flex;
94+
}
95+
96+
.hamburger {
97+
display: block;
98+
}
99+
100+
header h1 {
101+
font-size: 2.5rem;
102+
}
103+
104+
header p {
105+
font-size: 1.2rem;
106+
}
107+
108+
.cta-button {
109+
padding: 10px 20px;
110+
font-size: 1rem;
111+
}
112+
113+
section h2 {
114+
font-size: 1.8rem;
115+
}
116+
117+
.screenshots {
118+
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
119+
}
80120
}
81121

82122
nav ul {
@@ -398,48 +438,6 @@
398438
}
399439

400440
/* Responsive Design */
401-
@media (max-width: 768px) {
402-
nav ul {
403-
display: none;
404-
flex-direction: column;
405-
position: absolute;
406-
top: 60px;
407-
left: 0;
408-
width: 100%;
409-
background: #0A4D68;
410-
padding: 20px;
411-
}
412-
413-
nav ul.active {
414-
display: flex;
415-
}
416-
417-
.hamburger {
418-
display: block;
419-
}
420-
421-
header h1 {
422-
font-size: 2.5rem;
423-
}
424-
425-
header p {
426-
font-size: 1.2rem;
427-
}
428-
429-
.cta-button {
430-
padding: 10px 20px;
431-
font-size: 1rem;
432-
}
433-
434-
section h2 {
435-
font-size: 1.8rem;
436-
}
437-
438-
.screenshots {
439-
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
440-
}
441-
}
442-
443441
@media (max-width: 480px) {
444442
header h1 {
445443
font-size: 2rem;
@@ -465,7 +463,7 @@
465463
<li><a href="https://github.com/MicroPythonOS/MicroPythonOS/releases" target="_blank" aria-label="Download MicroPythonOS">Download</a></li>
466464
<li><a href="https://chat.MicroPythonOS.com" target="_blank" aria-label="Community Chat">Community</a></li>
467465
<li><a href="https://docs.MicroPythonOS.com" target="_blank" aria-label="Documentation">Documentation</a></li>
468-
<li><a href="mailto:info@MicroPythonOS.com" target="_blank" aria-label="Contact MicroPythonOS">Contact</a></li>
466+
<li><a href="mailto:info@MicroPythonOS.com" aria-label="Contact MicroPythonOS">Contact</a></li>
469467
</ul>
470468
<div class="hamburger" onclick="toggleMenu()"></div>
471469
</div>
@@ -490,6 +488,7 @@ <h2>Why MicroPythonOS?</h2>
490488
<section>
491489
<h2>Screenshots</h2>
492490
<div class="screenshots">
491+
<!-- Adding "data-play-overlay" to the <video/> tags below will show a nice "Play" button instead of autoplay, but for now, autoplay is more fun. -->
493492
<!-- <img src="screenshots/light/0.0.6/launcher.png" alt="Launcher Screenshot"/> -->
494493
<video autoplay loop muted playsinline poster="screenshots/light/0.7.2/launcher_appstore.png" width="320" height="240" preload="auto">
495494
<source src="screenshots/light/0.7.2/launcher-2026-01-28_19.19.21.mp4" type="video/mp4">
@@ -524,13 +523,14 @@ <h2>Screenshots</h2>
524523
<!-- <img src="screenshots/light/0.0.6/mpos_camera_qr_320x240.png" alt="Camera QR Code Screenshot"/> -->
525524
<img src="screenshots/light/0.7.2/camera_qr_code.png" alt="Camera QR Code Screenshot"/>
526525

526+
527+
527528
<!-- <img src="screenshots/light/0.0.6/osupdate_progress3.png" alt="OS Update Progress Screenshot"/> -->
528529
<video autoplay loop muted playsinline poster="screenshots/light/0.7.2/osupdate_67.png" width="320" height="240" preload="auto">
529530
<source src="screenshots/light/0.7.2/osupdate-2026-01-28_19.39.18_cut.mp4" type="video/mp4">
530531
<img src="screenshots/light/0.7.2/osupdate_67.png" alt="MicroPythonOS AppStore">
531532
</video>
532533
<!-- <img src="screenshots/dark/0.0.4/0.0.4_launcher1.png" alt="Dark Theme Launcher Screenshot"/> -->
533-
534534
<img src="screenshots/light/0.0.6/image_viewer.png" alt="Image Viewer Screenshot"/>
535535
<img src="screenshots/dark/0.3.3/wifi_password.png" alt="Dark Theme WiFi Password Screenshot"/>
536536
<!-- <img src="screenshots/dark/0.0.4/0.0.4_appstore_uninstall_draw.png" alt="Dark Theme App Store Uninstall Screenshot"/> -->
@@ -600,7 +600,7 @@ <h2>Possibilities</h2>
600600
<div class="social-links">
601601
<a href="https://chat.MicroPythonOS.com" target="_blank">Community Chat</a> |
602602
<a href="https://github.com/MicroPythonOS" target="_blank">GitHub</a> |
603-
<a href="mailto:info@MicroPythonOS.com" target="_blank">Email</a>
603+
<a href="mailto:info@MicroPythonOS.com">Email</a>
604604
</div>
605605
</footer>
606606

0 commit comments

Comments
 (0)