Skip to content

Commit 90f09ad

Browse files
committed
pushing changes to make sponsors, leadership, what is fsae
1 parent 17a7067 commit 90f09ad

File tree

4 files changed

+126
-15
lines changed

4 files changed

+126
-15
lines changed

Leadership.css

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,16 +283,20 @@ h2 {
283283
}
284284

285285
h1 {
286-
font-size: 2.8em;
286+
font-size: 2em;
287287
}
288288

289289
h2 {
290-
font-size: 1.75em;
290+
font-size: 1.5em;
291291
width: 80%;
292292
text-align: center;
293293

294294
}
295295

296+
.lead_name {
297+
font-size: 1.2em;
298+
}
299+
296300

297301

298302
}
@@ -381,4 +385,19 @@ h2 {
381385
font-style: italic;
382386
font-size: 1em;
383387
padding: 1% 0;
388+
}
389+
390+
@media screen and (max-width: 600px) {
391+
.socials {
392+
flex-direction: row; /* Stack social icons */
393+
padding: 5% 0; /* Increase padding */
394+
}
395+
396+
.socials a img {
397+
width: 30px; /* Reduce icon size */
398+
}
399+
400+
.copyright {
401+
font-size: 0.8em; /* Smaller copyright text */
402+
}
384403
}

Sponsors.css

Lines changed: 51 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
1+
html {
2+
width: 100%;
3+
overflow-x: hidden;
4+
}
25
body {
36
margin: 0;
47
padding: 0;
@@ -139,12 +142,13 @@ h2 {
139142

140143
}
141144

142-
p {
145+
.sponsorpacket {
143146
display: flex;
144147
font-family: Roboto Condensed;
145148
font-size: 1.80em;
146-
padding: 1% 0 3% 2.5%;
149+
147150
margin-top: 2%;
151+
margin-bottom: 2%;
148152
font-weight: bold;
149153
justify-content: center;
150154
background-color: #1B263B;
@@ -217,7 +221,7 @@ p a:visited {
217221

218222
}
219223

220-
@media screen and (max-width: 768px) {
224+
@media screen and (max-width: 600px) {
221225

222226

223227
.flex-container {
@@ -244,8 +248,33 @@ p a:visited {
244248
margin-bottom: 4%;
245249
}
246250

251+
h1 {
252+
font-size: 1.75em;
253+
}
254+
255+
h2 {
256+
font-size: 1.75em;
257+
text-align: center;
258+
margin-top: 1%;
259+
}
260+
247261
p {
248-
font-size: 1.2em; /* Make font size smaller for mobile */
262+
font-size: 1.5em; /* Make font size smaller for mobile */
263+
margin: 0 auto;
264+
}
265+
266+
.sponsorpacket {
267+
display: flex;
268+
font-family: Roboto Condensed;
269+
font-size: 1em;
270+
display: flex;
271+
flex-direction: column;
272+
273+
padding: 2%;
274+
font-weight: bold;
275+
justify-content: center;
276+
background-color: #1B263B;
277+
249278
}
250279
}
251280

@@ -314,6 +343,21 @@ p a:visited {
314343
justify-content: center;
315344
font-family: Scandia;
316345
font-style: italic;
317-
font-size: 1em;
346+
font-size: 0.8em;
318347
padding: 1% 0;
319-
}
348+
}
349+
350+
@media screen and (max-width: 600px) {
351+
.socials {
352+
flex-direction: row; /* Stack social icons */
353+
padding: 5% 0; /* Increase padding */
354+
}
355+
356+
.socials a img {
357+
width: 30px; /* Reduce icon size */
358+
}
359+
360+
.copyright {
361+
font-size: 0.8em; /* Smaller copyright text */
362+
}
363+
}

sponsors.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,12 @@
6464

6565
<h1>Thank You to Our Sponsors!</h1>
6666

67-
<p>Interested in Sponsoring Formula Slug? Here is our &nbsp <a href="Sponsorship Packet 2024-25.pdf" target="_blank"> Sponsorship Packet </a> &nbsp with more information. </p>
67+
<div class="sponsorpacket">
68+
<p>Interested in Sponsoring Formula Slug? Take a look at our &nbsp;</p>
69+
<p><a href="Sponsorship Packet 2024-25.pdf" target="_blank"> Sponsorship Packet </a></p>
70+
71+
</div>
72+
6873

6974

7075

what_is_FSAE.css

Lines changed: 48 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -301,12 +301,35 @@ p {
301301

302302
@media screen and (max-width: 760px) {
303303

304-
.FS_design_intro {
305-
font-size: 2.4em;
304+
.fsae_electric_pic {
305+
font-size: 1.8em;
306+
}
307+
308+
.what_is_fsae {
309+
font-size: 1.75em;
310+
}
311+
312+
.fsae_desc {
313+
font-size: 1em;
314+
}
315+
316+
.FS_involve {
317+
font-size: 1.75em;
318+
}
319+
320+
.involve_desc {
321+
font-size: 1em;
322+
}
323+
324+
.FS_design_intro, .FS_design_title {
325+
font-size: 1.5em;
306326
width: max-content;
307327
max-width: 100%;
328+
text-align: center;
308329
}
309330

331+
332+
310333

311334
.flex-container {
312335
flex-wrap: wrap;
@@ -326,11 +349,12 @@ p {
326349

327350
}
328351

329-
.first_item {
330-
display: flex;
331-
flex-direction: column;
352+
.FS_design_brief, .design_topic, p {
353+
font-size: 1em;
332354
}
333355

356+
357+
334358
.second_item img{
335359
width: 100%;
336360
padding: 0 auto;
@@ -341,6 +365,10 @@ p {
341365
height: 30vh;
342366
}
343367

368+
.second_item p {
369+
font-size: 1em;
370+
}
371+
344372
.design_topic li {
345373
flex: 1;
346374
text-align: center;
@@ -410,4 +438,19 @@ p {
410438
font-style: italic;
411439
font-size: 1em;
412440
padding: 1% 0;
441+
}
442+
443+
@media screen and (max-width: 600px) {
444+
.socials {
445+
flex-direction: row; /* Stack social icons */
446+
padding: 5% 0; /* Increase padding */
447+
}
448+
449+
.socials a img {
450+
width: 30px; /* Reduce icon size */
451+
}
452+
453+
.copyright {
454+
font-size: 0.8em; /* Smaller copyright text */
455+
}
413456
}

0 commit comments

Comments
 (0)