Skip to content

Commit 01f350a

Browse files
committed
chore: enhance responsiveness with flexible grids
1 parent 88e1657 commit 01f350a

4 files changed

Lines changed: 31 additions & 8 deletions

File tree

about.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
<section>
2121
<h1>Guiding Human Curiosity</h1>
22-
<div style="margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px;">
22+
<div style="margin-top: 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;">
2323
<div style="padding: 20px; border-left: 3px solid #7c4dff; background: rgba(255,255,255,0.02);">
2424
<strong style="color: #fff; display: block; margin-bottom: 10px;">SDG 4: Quality Education</strong>
2525
<p style="font-size: 0.9rem; margin: 0;">Target 4.7: We visualize planetary geology through Earth's geography, fostering environmental awareness.</p>

css/about.css

Lines changed: 27 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,31 @@ celestine-footer {
166166

167167
@media (max-width: 768px) {
168168
h1 { font-size: 2.5rem; }
169-
.founder-card { flex-direction: column; text-align: center; align-items: center; }
170-
.founder-image-wrapper { width: 100%; max-width: 300px; }
171-
.founder-location { justify-content: center; }
172-
.credentials-grid { grid-template-columns: 1fr; text-align: left; }
169+
170+
.founder-card {
171+
flex-direction: column;
172+
padding: 20px !important;
173+
gap: 30px;
174+
}
175+
176+
.founder-image-wrapper {
177+
width: 100%;
178+
max-width: 280px;
179+
margin: 0 auto;
180+
}
181+
182+
.founder-info {
183+
text-align: left;
184+
width: 100%;
185+
}
186+
187+
.credentials-grid {
188+
grid-template-columns: 1fr;
189+
gap: 20px;
190+
}
191+
192+
.credential-box strong {
193+
word-wrap: break-word;
194+
hyphens: auto;
195+
}
173196
}

features.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ <h1>Product Tour: From Space to Earth</h1>
2626
<div class="problem-section" style="margin-bottom: 80px; padding: 40px; background: rgba(255,255,255,0.03); border-radius: 20px; border: 1px solid rgba(255,255,255,0.1);">
2727
<h2 style="margin-top: 0; text-align: center;">The Problem We're Solving</h2>
2828

29-
<div style="display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 30px;">
29+
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 30px;">
3030
<div>
3131
<h3 style="color: #ff6b6b; font-size: 1.2rem; display: flex; align-items: center; gap: 10px;">
3232
<i class="fas fa-times-circle"></i> Static Education
@@ -96,7 +96,7 @@ <h3 class="step-title">The Earth Analogue Loop</h3>
9696

9797
<section style="margin-bottom: 80px;">
9898
<h2 style="text-align: center; color: #fff; margin-bottom: 40px;">Target Market</h2>
99-
<div style="display: grid; grid-template-columns: 1fr 1fr; gap: 30px;">
99+
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px;">
100100
<div style="background: rgba(124, 77, 255, 0.1); border: 1px solid rgba(124, 77, 255, 0.3); padding: 30px; border-radius: 16px;">
101101
<h3 style="color: #b388ff; margin-top: 0;"><i class="fas fa-school"></i> Primary: STEM Education</h3>
102102
<p style="color: #ddd;">

js/footer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class CelestineFooter extends HTMLElement {
2323
</div>
2424
2525
<p style="color: #666; font-size: 0.9rem; margin-bottom: 15px;">
26-
&copy; 2026 Celestine Project by Veronika Kashtanova. <br>Built for the Future.
26+
&copy; 2026 Celestine by Veronika Kashtanova. <br>Built for the Future.
2727
</p>
2828
2929
<div style="display: flex; justify-content: center; gap: 20px; align-items: center; flex-wrap: wrap;">

0 commit comments

Comments
 (0)