-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
990 lines (980 loc) · 93.1 KB
/
index.html
File metadata and controls
990 lines (980 loc) · 93.1 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
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
<!doctype html>
<html>
<head>
<title>Alex | Design</title>
<link rel="stylesheet" href="./photoswipe/photoswipe.css">
<link rel="stylesheet" href="./photoswipe/photoswipe-dynamic-caption-plugin.css">
<style>
body {
margin: 0px;
background-color: #161a1d;
font-family: 'Verdana', sans-serif;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
}
.intro {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding-top: 2em;
padding-bottom: 0em;
padding-left: 15%;
padding-right: 15%;
color: #eeeeee;
text-align: center;
}
.pswp-gallery {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(160px,1fr) minmax(160px,1fr)); /* repeating minmax forces an even number of columns */
grid-auto-rows: auto;
margin: 10px;
}
.pswp-gallery a {
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
margin: 10px;
height: calc(100% - 2 * 10px);
width: calc(100% - 2 * 10px);
}
.pswp-gallery a img {
min-width: 100%;
min-height: 100%;
object-fit: cover;
}
.pswp-gallery a.nocrop {
height: initial;
width: initial;
max-height: 100%;
max-width: 100%;
}
.pswp-gallery a.nocrop img {
min-height: initial;
max-height: 100%;
max-width: 100%;
}
.pswp__dynamic-caption {
font-size: 1.2em;
}
.asp-1 , .rasp-1 { aspect-ratio: 24/1 ; }
.asp-2 , .rasp-2 { aspect-ratio: 24/2 ; }
.asp-3 , .rasp-3 { aspect-ratio: 24/3 ; }
.asp-4 , .rasp-4 { aspect-ratio: 24/4 ; }
.asp-5 , .rasp-5 { aspect-ratio: 24/5 ; }
.asp-6 , .rasp-6 { aspect-ratio: 24/6 ; }
.asp-7 , .rasp-7 { aspect-ratio: 24/7 ; }
.asp-8 , .rasp-8 { aspect-ratio: 24/8 ; }
.asp-9 , .rasp-9 { aspect-ratio: 24/9 ; }
.asp-10, .rasp-10 { aspect-ratio: 24/10; }
.asp-11, .rasp-11 { aspect-ratio: 24/11; }
.asp-12, .rasp-12 { aspect-ratio: 24/12; }
.asp-13, .rasp-13 { aspect-ratio: 24/13; }
.asp-14, .rasp-14 { aspect-ratio: 24/14; }
.asp-15, .rasp-15 { aspect-ratio: 24/15; }
.asp-16, .rasp-16 { aspect-ratio: 24/16; }
.asp-17, .rasp-17 { aspect-ratio: 24/17; }
.asp-18, .rasp-18 { aspect-ratio: 24/18; }
.asp-19, .rasp-19 { aspect-ratio: 24/19; }
.asp-20, .rasp-20 { aspect-ratio: 24/20; }
.asp-21, .rasp-21 { aspect-ratio: 24/21; }
.asp-22, .rasp-22 { aspect-ratio: 24/22; }
.asp-23, .rasp-23 { aspect-ratio: 24/23; }
.asp-24, .rasp-24 { aspect-ratio: 24/24; }
.asp-25, .rasp-25 { aspect-ratio: 24/25; }
.asp-26, .rasp-26 { aspect-ratio: 24/26; }
.asp-27, .rasp-27 { aspect-ratio: 24/27; }
.asp-28, .rasp-28 { aspect-ratio: 24/28; }
.asp-29, .rasp-29 { aspect-ratio: 24/29; }
.asp-30, .rasp-30 { aspect-ratio: 24/30; }
.asp-31, .rasp-31 { aspect-ratio: 24/31; }
.asp-32, .rasp-32 { aspect-ratio: 24/32; }
.asp-33, .rasp-33 { aspect-ratio: 24/33; }
.asp-34, .rasp-34 { aspect-ratio: 24/34; }
.asp-35, .rasp-35 { aspect-ratio: 24/35; }
.asp-36, .rasp-36 { aspect-ratio: 24/36; }
.asp-37, .rasp-37 { aspect-ratio: 24/37; }
.asp-38, .rasp-38 { aspect-ratio: 24/38; }
.asp-39, .rasp-39 { aspect-ratio: 24/39; }
.asp-40, .rasp-40 { aspect-ratio: 24/40; }
.asp-41, .rasp-41 { aspect-ratio: 24/41; }
.asp-42, .rasp-42 { aspect-ratio: 24/42; }
.asp-43, .rasp-43 { aspect-ratio: 24/43; }
.asp-44, .rasp-44 { aspect-ratio: 24/44; }
.asp-45, .rasp-45 { aspect-ratio: 24/45; }
.asp-46, .rasp-46 { aspect-ratio: 24/46; }
.asp-47, .rasp-47 { aspect-ratio: 24/47; }
.asp-48, .rasp-48 { aspect-ratio: 24/48; }
.asp-49, .rasp-49 { aspect-ratio: 24/49; }
.asp-50, .rasp-50 { aspect-ratio: 24/50; }
.asp-51, .rasp-51 { aspect-ratio: 24/51; }
.asp-52, .rasp-52 { aspect-ratio: 24/52; }
.asp-53, .rasp-53 { aspect-ratio: 24/53; }
.asp-54, .rasp-54 { aspect-ratio: 24/54; }
.asp-55, .rasp-55 { aspect-ratio: 24/55; }
.asp-56, .rasp-56 { aspect-ratio: 24/56; }
.asp-57, .rasp-57 { aspect-ratio: 24/57; }
.asp-58, .rasp-58 { aspect-ratio: 24/58; }
.asp-59, .rasp-59 { aspect-ratio: 24/59; }
.asp-60, .rasp-60 { aspect-ratio: 24/60; }
.rows-1 , .rasp-1 { grid-row: span 1 }
.rows-2 , .rasp-2 { grid-row: span 2 }
.rows-3 , .rasp-3 { grid-row: span 3 }
.rows-4 , .rasp-4 { grid-row: span 4 }
.rows-5 , .rasp-5 { grid-row: span 5 }
.rows-6 , .rasp-6 { grid-row: span 6 }
.rows-7 , .rasp-7 { grid-row: span 7 }
.rows-8 , .rasp-8 { grid-row: span 8 }
.rows-9 , .rasp-9 { grid-row: span 9 }
.rows-10, .rasp-10 { grid-row: span 10 }
.rows-11, .rasp-11 { grid-row: span 11 }
.rows-12, .rasp-12 { grid-row: span 12 }
.rows-13, .rasp-13 { grid-row: span 13 }
.rows-14, .rasp-14 { grid-row: span 14 }
.rows-15, .rasp-15 { grid-row: span 15 }
.rows-16, .rasp-16 { grid-row: span 16 }
.rows-17, .rasp-17 { grid-row: span 17 }
.rows-18, .rasp-18 { grid-row: span 18 }
.rows-19, .rasp-19 { grid-row: span 19 }
.rows-20, .rasp-20 { grid-row: span 20 }
.rows-21, .rasp-21 { grid-row: span 21 }
.rows-22, .rasp-22 { grid-row: span 22 }
.rows-23, .rasp-23 { grid-row: span 23 }
.rows-24, .rasp-24 { grid-row: span 24 }
.rows-25, .rasp-25 { grid-row: span 25 }
.rows-26, .rasp-26 { grid-row: span 26 }
.rows-27, .rasp-27 { grid-row: span 27 }
.rows-28, .rasp-28 { grid-row: span 28 }
.rows-29, .rasp-29 { grid-row: span 29 }
.rows-30, .rasp-30 { grid-row: span 30 }
.rows-31, .rasp-31 { grid-row: span 31 }
.rows-32, .rasp-32 { grid-row: span 32 }
.rows-33, .rasp-33 { grid-row: span 33 }
.rows-34, .rasp-34 { grid-row: span 34 }
.rows-35, .rasp-35 { grid-row: span 35 }
.rows-36, .rasp-36 { grid-row: span 36 }
.rows-37, .rasp-37 { grid-row: span 37 }
.rows-38, .rasp-38 { grid-row: span 38 }
.rows-39, .rasp-39 { grid-row: span 39 }
.rows-40, .rasp-40 { grid-row: span 40 }
.rows-41, .rasp-41 { grid-row: span 41 }
.rows-42, .rasp-42 { grid-row: span 42 }
.rows-43, .rasp-43 { grid-row: span 43 }
.rows-44, .rasp-44 { grid-row: span 44 }
.rows-45, .rasp-45 { grid-row: span 45 }
.rows-46, .rasp-46 { grid-row: span 46 }
.rows-47, .rasp-47 { grid-row: span 47 }
.rows-48, .rasp-48 { grid-row: span 48 }
.rows-49, .rasp-49 { grid-row: span 49 }
.rows-50, .rasp-50 { grid-row: span 50 }
.rows-51, .rasp-51 { grid-row: span 51 }
.rows-52, .rasp-52 { grid-row: span 52 }
.rows-53, .rasp-53 { grid-row: span 53 }
.rows-54, .rasp-54 { grid-row: span 54 }
.rows-55, .rasp-55 { grid-row: span 55 }
.rows-56, .rasp-56 { grid-row: span 56 }
.rows-57, .rasp-57 { grid-row: span 57 }
.rows-58, .rasp-58 { grid-row: span 58 }
.rows-59, .rasp-59 { grid-row: span 59 }
.rows-60, .rasp-60 { grid-row: span 60 }
.cols-1 { grid-column: span 1 }
.cols-2 { grid-column: span 2 }
.cols-3 { grid-column: span 3 }
.cols-4 { grid-column: span 4 }
.cols-5 { grid-column: span 5 }
.cols-6 { grid-column: span 6 }
@media (max-width: calc(160px * 6 + 20px)) {
.cols-5 { grid-column: span 4 }
.cols-6 { grid-column: span 4 }
}
@media (max-width: calc(160px * 4 + 20px)) {
.cols-3 { grid-column: span 2 }
.cols-4 { grid-column: span 2 }
.cols-5 { grid-column: span 2 }
.cols-6 { grid-column: span 2 }
}
</style>
</head>
<body>
<div class="intro">
<p>
While studying at Flinders University, I helped run a couple of clubs, and did some graphic design. This ranged across digital designs (e.g. logos, social media, TV slides, event posters, etc.), physical branding (vinyl banners, decals, stickers, coreflute signage, etc.) and merchandise (embroidery, screen printing, and POD merch), as well as other bits and pieces (like painting a mural).
</p>
<p>
This site holds a collection of various bits & pieces I've made. The designs here are displayed in no particular order, and you can click on each to view a brief blurb of info (once you click on one you can also use the arrows to step through them all in order).
</p>
<p>
The two clubs I made these designs for were the Flinders Academic Science Club (FLASC) and the Flinders University Computer Society (FUCS).<br>
There's also a few yellow designs here with the name Thinking CaPS on them. Those weren't made by me! They're just prior designs that I used as a reference, when designing new branding material for FLASC (formerly known as Thinking CaPS).
</p>
<p>
<small>© Alex Priest, FLASC, & FUCS</small>
</p>
</div>
<div class="grid pswp-gallery" id="gallery">
<a class="rows-24 asp-8 cols-6" href="FLASC - Hallway banner/Hallway Banner v6.6 24dpi no-bleed.png" data-pswp-width="2268" data-pswp-height="756">
<img src="FLASC - Hallway banner/Hallway Banner v6.6 24dpi no-bleed.png" />
<span class="pswp-caption-content"><h1>FLASC Hallway Banner</h1><p>A banner design made for hallways around campus</p><p>2.4m x 0.8m</p><p>Designed in Inkscape & Krita</p><p>Printed by Elite Printing Studio, Adelaide</p></span>
</a>
<a class="rasp-13 cols-2" href="FLASC - Hallway banner/P_20231110_174947-edited.jpg" data-pswp-width="1854" data-pswp-height="1018">
<img src="FLASC - Hallway banner/P_20231110_174947-edited.jpg" />
<span class="pswp-caption-content"><h1>FLASC Hallway Banner</h1><p>A copy of our banner, on permanent display outside lecture theatures South 1+2</p><p>2.4m x 0.8m</p><p>Designed in Inkscape & Krita</p><p>Printed by Elite Printing Studio, Adelaide</p></span>
</a>
<a class="rasp-13 cols-2" href="FLASC - Hallway banner/P_20231109_171746-edited-cropped.jpg" data-pswp-width="3072" data-pswp-height="1696">
<img src="FLASC - Hallway banner/P_20231109_171746-edited-cropped.jpg" />
<span class="pswp-caption-content"><h1>FLASC Hallway Banner</h1><p>A copy of our banner, on permanent display in level 3 of the Physical Sciences building</p><p>2.4m x 0.8m</p><p>Designed in Inkscape & Krita</p><p>Printed by Elite Printing Studio, Adelaide</p></span>
</a>
<a class="rasp-8 cols-2" href="FLASC - Hallway banner/Thinking CaPS old hallway banner.jpg" data-pswp-width="1542" data-pswp-height="558">
<img src="FLASC - Hallway banner/Thinking CaPS old hallway banner.jpg" />
<span class="pswp-caption-content"><p>Prior design. The club rebranded from Thinking CaPS to FLASC. The new banner design (made by me) was based upon this design (made by others).</p></span>
</a>
<a class="rasp-15 cols-2" href="FUCS - Glyphs/Glyphs-white-bg.png" data-pswp-width="4144" data-pswp-height="2637">
<img src="FUCS - Glyphs/Glyphs-white-bg.png" />
<span class="pswp-caption-content"><h1>FUCS Glyphs</h1><p>A set of computing-related icons designed to be used in logos, cover photos, slide backgrounds, etc.</p><p>The insects represent bugs in code, e.g. for any debugging-related events.</p><p>Designed in Inkscape</p></span>
</a>
<a class="rasp-24 cols-2 nocrop" href="FLASC - Table Stickers/TableSticker v7e1 crop.png" data-pswp-width="1888" data-pswp-height="1888">
<img src="FLASC - Table Stickers/TableSticker v7e1 crop.png" />
<span class="pswp-caption-content"><h1>FLASC Table Stickers 2023</h1><p>Circular 25cm decals placed in the centre of five tables outside the club's common room</p><p>Designed in Inkscape</p><p>Printed by Elite Printing Studio, Adelaide</p></span>
</a>
<a class="rasp-18 cols-2" href="FLASC - Table Stickers/IMG_20250612_125117.jpg" data-pswp-width="4096" data-pswp-height="3072">
<img src="FLASC - Table Stickers/IMG_20250612_125117.jpg" />
<span class="pswp-caption-content"><h1>FLASC Table Stickers 2023</h1><p>Circular 25cm decals placed in the centre of five tables outside the club's common room</p><p>Designed in Inkscape</p><p>Printed by Elite Printing Studio, Adelaide</p></span>
</a>
<a class="rasp-16 cols-2 nocrop" href="FLASC - Book stickers/sticker v29 rounded transparent.png" data-pswp-width="993" data-pswp-height="651">
<img src="FLASC - Book stickers/sticker v29 rounded transparent.png" />
<span class="pswp-caption-content"><h1>FLASC Book Stickers 2023</h1><p>An updated design for stickers used to label books and other club assets</p><p>Designed in Inkscape & Krita</p><p>Printed by Moo Printing</p></span>
</a>
<a class="rasp-24 cols-2" href="FLASC - Book stickers/IMG_20250908_152127~2.jpg" data-pswp-width="3072" data-pswp-height="3072">
<img src="FLASC - Book stickers/IMG_20250908_152127~2.jpg" />
<span class="pswp-caption-content"><h1>FLASC Book Stickers 2023</h1><p>An updated design for stickers used to label books and other club assets</p><p>Designed in Inkscape & Krita</p><p>Printed by Moo Printing</p></span>
</a>
<a class="rasp-16 cols-2 nocrop" href="FLASC - Book stickers/Thinking CaPS old book sticker rounded.png" data-pswp-width="476" data-pswp-height="312">
<img src="FLASC - Book stickers/Thinking CaPS old book sticker rounded.png" />
<span class="pswp-caption-content"><h1>FLASC Book Stickers 2023</h1><p>Prior design. The club rebranded from Thinking CaPS to FLASC. The new sticker design (made by me) was very loosely based upon this design (made by others).</p></span>
</a>
<a class="rasp-58 cols-2" href="FLASC - Pull-up banner/Pullup banner 42 preview size-for-officeworks small.png" data-pswp-width="1248" data-pswp-height="3049">
<img src="FLASC - Pull-up banner/Pullup banner 42 preview size-for-officeworks small.png" />
<span class="pswp-caption-content"><h1>FLASC Pull-Up Banner 2023</h1><p>An updated design for a pull-up banner displayed at club events</p><p>Designed in Inkscape & Krita</p><p>Printed by Officeworks</p></span>
</a>
<a class="rasp-58 cols-2" href="FLASC - Pull-up banner/Thinking CaPS old pull-up banner.jpg" data-pswp-width="721" data-pswp-height="1837">
<img src="FLASC - Pull-up banner/Thinking CaPS old pull-up banner.jpg" />
<span class="pswp-caption-content"><h1>FLASC Pull-Up Banner 2023</h1><p>Prior design. The club rebranded from Thinking CaPS to FLASC. The new banner design (made by me) was based upon this design (made by others).</p></span>
</a>
<a class="rasp-24 cols-2" href="FLASC - General Posters/GeneralPoster v8.png" data-pswp-width="2245" data-pswp-height="2245">
<img src="FLASC - General Posters/GeneralPoster v8.png" />
<span class="pswp-caption-content"><h1>FLASC General Posters 2022</h1><p>Laminated posters displayed on an ongoing basis around campus (A4 and A3, cropped to a square)</p><p>Designed in Inkscape</p></span>
</a>
<a class="rasp-34 cols-2" href="FLASC - General Posters/BoardPoster v8.png" data-pswp-width="1587" data-pswp-height="2244">
<img src="FLASC - General Posters/BoardPoster v8.png" />
<span class="pswp-caption-content"><h1>FLASC Board Posters 2022</h1><p>Laminated posters displayed on an ongoing basis around campus (A4 size)</p><p>The 'things you might be interested in' and designs shown behind each one were copied from a previous Facebook banner made by the club (before the club rebranded from Thinking CaPS to FLASC)</p><p>Designed in Inkscape</p></span>
</a>
<a class="rasp-31 cols-2" href="FLASC - Merch/Multicolour flasc 3.10 black-bg cropped.png" data-pswp-width="3200" data-pswp-height="4090">
<img src="FLASC - Merch/Multicolour flasc 3.10 black-bg cropped.png" />
<span class="pswp-caption-content"><h1>FLASC Merch 2022</h1><p>Design to be sent to the embroidery company.</p><p>This was a reworked version of our existing blue logo above, with rainbow colours and bubbles added (the rainbow palette was copied from a previous event).</p><p>After this point, the rainbow logo and colour scheme were used in various other places, e.g. quiz nights, further merch, etc.</p><p>Designed in Inkscape and embroidered by Topline Promotions, Adelaide</p></span>
</a>
<a class="rasp-30 cols-2" href="FLASC - Merch/Multicolour flasc on black preview.png" data-pswp-width="3174" data-pswp-height="3967">
<img src="FLASC - Merch/Multicolour flasc on black preview.png" />
<span class="pswp-caption-content"><h1>FLASC Merch 2022</h1><p>A mockup made before sending the design to the embroidery company</p><p>Designed in Inkscape & Paint.NET</p><p>Embroidered by Topline Promotions, Adelaide</p></span>
</a>
<a class="rasp-24 cols-2" href="FLASC - Merch/P_20230510_233837~2.jpg" data-pswp-width="2832" data-pswp-height="2832">
<img src="FLASC - Merch/P_20230510_233837~2.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2022</h1><p>Resulting merch produced by the embroidery company. Other club execs designed the white jumpers/hoodies, while I designed the black jumpers/hoodies and organised embroidery of both</p><p>Designed in Inkscape & Paint.NET</p><p>Embroided by Topline Promotions, Adelaide</p></span>
</a>
<a class="rasp-15 cols-2 nocrop" href="FLASC - Business Cards/Business card v5 cropped front.png" data-pswp-width="1075" data-pswp-height="650">
<img src="FLASC - Business Cards/Business card v5 cropped front.png" />
<span class="pswp-caption-content"><h1>FLASC Business Cards 2023</h1><p>New business cards to be used by club executives</p><p>People could write their personal email/details in the blank area on the back</p><p>Originally printed with a white back, however the ink from the front of each card rubbed onto the back of the next, so this was replaced with a blue back</p><p>Designed in Inkscape</p><p>Printed by VistaPrint</p></span>
</a>
<a class="rasp-15 cols-2 nocrop" href="FLASC - Business Cards/Business card v5 cropped back-lightblue.png" data-pswp-width="1075" data-pswp-height="650">
<img src="FLASC - Business Cards/Business card v5 cropped back-lightblue.png" />
<span class="pswp-caption-content"><h1>FLASC Business Cards 2023</h1><p>New business cards to be used by club executives</p><p>People could write their personal email/details in the blank area on the back</p><p>Originally printed with a white back, however the ink from the front of each card rubbed onto the back of the next, so this was replaced with a blue back</p><p>Designed in Inkscape</p><p>Printed by VistaPrint</p></span>
</a>
<a class="rasp-24 cols-2" href="FLASC - Business Cards/IMG_20250908_152633.jpg" data-pswp-width="3072" data-pswp-height="3072">
<img src="FLASC - Business Cards/IMG_20250908_152633.jpg" />
<span class="pswp-caption-content"><h1>FLASC Business Cards 2023</h1><p>New business cards to be used by club executives</p><p>People could write their personal email/details in the blank area on the back</p><p>Originally printed with a white back, however the ink from the front of each card rubbed onto the back of the next, so this was replaced with a blue back</p><p>Designed in Inkscape</p><p>Printed by VistaPrint</p></span>
</a>
<a class="rasp-32 cols-2" href="FLASC - Bollard Paint/3-P_20230821_084722.jpg" data-pswp-width="3072" data-pswp-height="4096">
<img src="FLASC - Bollard Paint/3-P_20230821_084722.jpg" />
<span class="pswp-caption-content"><h1>FLASC Bollard Mural 2023</h1><p>A team of volunteers from the club (led by myself) painted a mural on a large concrete cylinder outside our common room. We mostly use the club's brand colours, blue and white. Painting was performed over 3 days on a long weekend, with additional coats completed afterwards.</p></span>
</a>
<a class="rasp-18 cols-2" href="FLASC - Bollard Paint/P_20230821_084707.jpg" data-pswp-width="4096" data-pswp-height="3072">
<img src="FLASC - Bollard Paint/P_20230821_084707.jpg" />
<span class="pswp-caption-content"><h1>FLASC Bollard Mural 2023</h1><p>A team of volunteers from the club (led by myself) painted a mural on a large concrete cylinder outside our common room. We mostly use the club's brand colours, blue and white. Painting was performed over 3 days on a long weekend, with additional coats completed afterwards.</p></span>
</a>
<a class="rasp-32 cols-2" href="FLASC - Bollard Paint/2-IMG_20230616_100035.jpg" data-pswp-width="3120" data-pswp-height="4160">
<img src="FLASC - Bollard Paint/2-IMG_20230616_100035.jpg" />
<span class="pswp-caption-content"><h1>FLASC Bollard Mural 2023</h1><p>A team of volunteers from the club (led by myself) painted a mural on a large concrete cylinder outside our common room. We mostly use the club's brand colours, blue and white. Painting was performed over 3 days on a long weekend, with additional coats completed afterwards.</p></span>
</a>
<a class="rasp-32 cols-2" href="FLASC - Bollard Paint/1-IMG_20250612_125728.jpg" data-pswp-width="3120" data-pswp-height="4160">
<img src="FLASC - Bollard Paint/1-IMG_20250612_125728.jpg" />
<span class="pswp-caption-content"><h1>FLASC Bollard Mural 2023</h1><p>A team of volunteers from the club (led by myself) painted a mural on a large concrete cylinder outside our common room. We mostly use the club's brand colours, blue and white. Painting was performed over 3 days on a long weekend, with additional coats completed afterwards.</p></span>
</a>
<a class="rasp-32 cols-2" href="FLASC - Bollard Paint/4-IMG_20250612_125837.jpg" data-pswp-width="3120" data-pswp-height="4160">
<img src="FLASC - Bollard Paint/4-IMG_20250612_125837.jpg" />
<span class="pswp-caption-content"><h1>FLASC Bollard Mural 2023</h1><p>A team of volunteers from the club (led by myself) painted a mural on a large concrete cylinder outside our common room. We mostly use the club's brand colours, blue and white. Painting was performed over 3 days on a long weekend, with additional coats completed afterwards.</p></span>
</a>
<a class="rasp-32 cols-2" href="FLASC - Bollard Paint/6-IMG_20250612_125623.jpg" data-pswp-width="3120" data-pswp-height="4160">
<img src="FLASC - Bollard Paint/6-IMG_20250612_125623.jpg" />
<span class="pswp-caption-content"><h1>FLASC Bollard Mural 2023</h1><p>A team of volunteers from the club (led by myself) painted a mural on a large concrete cylinder outside our common room. We mostly use the club's brand colours, blue and white. Painting was performed over 3 days on a long weekend, with additional coats completed afterwards.</p></span>
</a>
<a class="rasp-24 cols-2" href="FLASC - Flame Tracks/Flame tracks 3d v2 export.png" data-pswp-width="1024" data-pswp-height="1024">
<img src="FLASC - Flame Tracks/Flame tracks 3d v2 export.png" />
<span class="pswp-caption-content"><h1>FLASC Flame Tracks Science Demo 2024</h1><p>A 3D print for a science demonstration based on <nested-a href="https://www.youtube.com/watch?v=SqhXQUzVMlQ&ab_channel=SteveMould">a video by Steve Mould</nested-a></p><p>The demonstration has so far been unsuccessful, as I couldn't find a product to purchase in Australia as lighter fluid with exactly the right combustion properties</p><p>Designed in OpenSCAD & Inkscape</p><p>3D printed by the university</p></span>
</a>
<a class="rasp-34 cols-2" href="FLASC - South Ridge Map/Quick-routes-map-v41 96dpi.png" data-pswp-width="2245" data-pswp-height="3179">
<img src="FLASC - South Ridge Map/Quick-routes-map-v41 96dpi.png" />
<span class="pswp-caption-content"><h1>FLASC South Ridge Map 2024</h1><p>A map of the university's South Ridge precinct, put on display at a specific location (shown) as students entered South Ridge.</p><p>The map had two purposes – helping students navigate South Ridge, and showing how to get to the club common room. So far it's been on display for more than a year.</p><p>Designed in Inkscape</p><p>Printed by Officeworks</p></span>
</a>
<a class="rasp-32 cols-2" href="FLASC - South Ridge Map/IMG_20250619_160949-edit.jpg" data-pswp-width="1489" data-pswp-height="1984">
<img src="FLASC - South Ridge Map/IMG_20250619_160949-edit.jpg" />
<span class="pswp-caption-content"><h1>FLASC South Ridge Map 2024</h1><p>A map of the university's South Ridge precinct, put on display at a specific location (shown) as students entered South Ridge.</p><p>The map had two purposes – helping students navigate South Ridge, and showing how to get to the club common room. So far it's been on display for more than a year.</p><p>Designed in Inkscape</p><p>Printed by Officeworks</p></span>
</a>
<a class="rasp-32 cols-2" href="FLASC - South Ridge Map/IMG_20250619_160958-edit.jpg" data-pswp-width="1470" data-pswp-height="1960">
<img src="FLASC - South Ridge Map/IMG_20250619_160958-edit.jpg" />
<span class="pswp-caption-content"><h1>FLASC South Ridge Map 2024</h1><p>A map of the university's South Ridge precinct, put on display at a specific location (shown) as students entered South Ridge.</p><p>The map had two purposes – helping students navigate South Ridge, and showing how to get to the club common room. So far it's been on display for more than a year.</p><p>Designed in Inkscape</p><p>Printed by Officeworks</p></span>
</a>
<a class="rasp-24 cols-2" href="FUCS - Logo/Logo v19.png" data-pswp-width="800" data-pswp-height="800">
<img src="FUCS - Logo/Logo v19.png" />
<span class="pswp-caption-content"><h1>FUCS Logo 2022</h1><p>A new logo for the club. The computer monitor idea from the previous logo was reused, while everything else was brand new. The club later switched to a different colour scheme after publishing this logo, and published a recoloured version instead</p><p>Designed in Inkscape</p></span>
</a>
<a class="rasp-11 cols-2" href="FUCS - Facebook Banner/FB Banner v51.png" data-pswp-width="6562" data-pswp-height="2881">
<img src="FUCS - Facebook Banner/FB Banner v51.png" />
<span class="pswp-caption-content"><h1>FUCS Facebook Banner 2022</h1><p>A new facebook banner for the club. The club later switched to a different colour scheme after publishing this banner, and published a recoloured version instead</p><p>Designed in Inkscape</p></span>
</a>
<a class="rasp-13 cols-2" href="FLASC - Quiz Night 2023/Animated-slide v3.1-mini.gif" data-pswp-width="480" data-pswp-height="270">
<img src="FLASC - Quiz Night 2023/Animated-slide v3.1-mini.gif" />
<span class="pswp-caption-content"><h1>FLASC Quiz Night 2023</h1><p>TV slide (animated) to advertise the event</p><p>Low-res, low-framerate GIF shown here</p><p>Designed in Inkscape & HTML/CSS</p></span>
</a>
<a class="rows-19 asp-38 cols-1" href="FLASC - Quiz Night 2023/card-front.png" data-pswp-width="1950" data-pswp-height="3225">
<img src="FLASC - Quiz Night 2023/card-front.png" />
<span class="pswp-caption-content"><h1>FLASC Quiz Night 2023</h1><p>Trivia card (front side). 250x handed out to advertise the event</p><p>Designed in Inkscape</p><p>Printed by VistaPrint</p></span>
</a>
<a class="rows-19 asp-38 cols-1" href="FLASC - Quiz Night 2023/card-back.png" data-pswp-width="1950" data-pswp-height="3225">
<img src="FLASC - Quiz Night 2023/card-back.png" />
<span class="pswp-caption-content"><h1>FLASC Quiz Night 2023</h1><p>Trivia card (reverse side). 250x handed out to advertise the event</p><p>Designed in Inkscape</p><p>Printed by VistaPrint</p></span>
</a>
<a class="rasp-13 cols-2" href="FLASC - Quiz Night 2023/Static Quiz Night Slide V9.png" data-pswp-width="1920" data-pswp-height="1080">
<img src="FLASC - Quiz Night 2023/Static Quiz Night Slide V9.png" />
<span class="pswp-caption-content"><h1>FLASC Quiz Night 2023</h1><p>TV slide (non-animated) to advertise the event</p><p>Designed in Canva</p><p></p></span>
</a>
<a class="rasp-13 cols-2" href="FLASC - Quiz Night 2024/Animated-slide-mini.gif" data-pswp-width="480" data-pswp-height="270">
<img src="FLASC - Quiz Night 2024/Animated-slide-mini.gif" />
<span class="pswp-caption-content"><h1>FLASC Quiz Night 2024</h1><p>TV slide (animated) to advertise the event</p><p>Low-res, low-framerate GIF shown here</p><p>Designed in Inkscape & HTML/CSS</p></span>
</a>
<a class="rows-19 asp-38 cols-1" href="FLASC - Quiz Night 2024/card-front.png" data-pswp-width="651" data-pswp-height="1076">
<img src="FLASC - Quiz Night 2024/card-front.png" />
<span class="pswp-caption-content"><h1>FLASC Quiz Night 2024</h1><p>Trivia card (front side). 500x handed out to advertise the event</p><p>Designed in Inkscape</p><p>Printed by VistaPrint</p></span>
</a>
<a class="rows-19 asp-38 cols-1" href="FLASC - Quiz Night 2024/card-back.png" data-pswp-width="651" data-pswp-height="1076">
<img src="FLASC - Quiz Night 2024/card-back.png" />
<span class="pswp-caption-content"><h1>FLASC Quiz Night 2024</h1><p>Trivia card (reverse side). 500x handed out to advertise the event</p><p>Designed in Inkscape</p><p>Printed by VistaPrint</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Quiz Night 2024/2024 Quiz Night IG-1.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - Quiz Night 2024/2024 Quiz Night IG-1.png" />
<span class="pswp-caption-content"><h1>FLASC Quiz Night 2024</h1><p>Instagram post (part 1 of 2) to advertise the event</p><p>Designed in Canva</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Quiz Night 2024/2024 Quiz Night IG-2.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - Quiz Night 2024/2024 Quiz Night IG-2.png" />
<span class="pswp-caption-content"><h1>FLASC Quiz Night 2024</h1><p>Instagram post (part 2 of 2) to advertise the event</p><p>Designed in Canva</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Sticker Books/Stickerbook-v5 print membership-level-24.png" data-pswp-width="567" data-pswp-height="567">
<img src="FLASC - Sticker Books/Stickerbook-v5 print membership-level-24.png" />
<span class="pswp-caption-content"><h1>FLASC Membership Stickers '24</h1><p>Stickers for people to put on their student ID cards when joining FLASC</p><p>Designed in 2024 for multiple years</p><p>Designed in Inkscape</p><p>Printed by Moo Printing</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Sticker Books/Stickerbook-v5 print membership-level-25.png" data-pswp-width="567" data-pswp-height="567">
<img src="FLASC - Sticker Books/Stickerbook-v5 print membership-level-25.png" />
<span class="pswp-caption-content"><h1>FLASC Membership Stickers '25</h1><p>Stickers for people to put on their student ID cards when joining FLASC</p><p>Designed in 2024 for multiple years</p><p>Designed in Inkscape</p><p>Printed by Moo Printing</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Sticker Books/Stickerbook-v5 print membership-level-26.png" data-pswp-width="567" data-pswp-height="567">
<img src="FLASC - Sticker Books/Stickerbook-v5 print membership-level-26.png" />
<span class="pswp-caption-content"><h1>FLASC Membership Stickers '26</h1><p>Stickers for people to put on their student ID cards when joining FLASC</p><p>Designed in 2024 for multiple years</p><p>Designed in Inkscape</p><p>Printed by Moo Printing</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Sticker Books/Stickerbook-v5 print asset-sticker.png" data-pswp-width="567" data-pswp-height="567">
<img src="FLASC - Sticker Books/Stickerbook-v5 print asset-sticker.png" />
<span class="pswp-caption-content"><h1>FLASC Sticker Books 2024</h1><p>Stickers to be included (1) in books of stickers used by the club (e.g. to label club assets) and (2) in books of stickers sold as merch</p><p>Designed in Inkscape</p><p>Printed by Moo Printing</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Sticker Books/Stickerbook-v5 print qr-code.png" data-pswp-width="567" data-pswp-height="567">
<img src="FLASC - Sticker Books/Stickerbook-v5 print qr-code.png" />
<span class="pswp-caption-content"><h1>FLASC Sticker Books 2024</h1><p>Stickers to be included (1) in books of stickers used by the club (e.g. to label club assets) and (2) in books of stickers sold as merch</p><p>Designed in Inkscape</p><p>Printed by Moo Printing</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Sticker Books/Stickerbook-v5 print science.png" data-pswp-width="567" data-pswp-height="567">
<img src="FLASC - Sticker Books/Stickerbook-v5 print science.png" />
<span class="pswp-caption-content"><h1>FLASC Sticker Books 2024</h1><p>Stickers to be included (1) in books of stickers used by the club (e.g. to label club assets) and (2) in books of stickers sold as merch</p><p>Designed in Inkscape</p><p>Printed by Moo Printing</p></span>
</a>
<a class="rasp-16 cols-2 nocrop" href="FLASC - Sticker Books/Stickerbook-v5 preview flasc.PNG" data-pswp-width="481" data-pswp-height="320">
<img src="FLASC - Sticker Books/Stickerbook-v5 preview flasc.PNG" />
<span class="pswp-caption-content"><h1>FLASC Periodic Table Stickers 2024</h1><p>Sticker books. People could purchase a page of 6 stickers, spelling out 'FLASC' or 'Flinders' using periodic table elements</p><p>Designed in Inkscape</p><p>Printed by Moo Printing</p></span>
</a>
<a class="rasp-16 cols-2 nocrop" href="FLASC - Sticker Books/Stickerbook-v5 preview flinders.PNG" data-pswp-width="481" data-pswp-height="319">
<img src="FLASC - Sticker Books/Stickerbook-v5 preview flinders.PNG" />
<span class="pswp-caption-content"><h1>FLASC Periodic Table Stickers 2024</h1><p>Sticker books. People could purchase a page of 6 stickers, spelling out 'FLASC' or 'Flinders' using periodic table elements</p><p>Designed in Inkscape</p><p>Printed by Moo Printing</p></span>
</a>
<a class="rasp-18 cols-2" href="FLASC - Sticker Books/IMG_20250612_124338-crop.jpg" data-pswp-width="2498" data-pswp-height="1874">
<img src="FLASC - Sticker Books/IMG_20250612_124338-crop.jpg" />
<span class="pswp-caption-content"><h1>FLASC Periodic Table Stickers 2024</h1><p>Sticker books. People could purchase a page of 6 stickers, spelling out 'FLASC' or 'Flinders' using periodic table elements</p><p>Designed in Inkscape</p><p>Printed by Moo Printing</p></span>
</a>
<a class="rasp-18 cols-2" href="FLASC - Sticker Books/IMG_20250612_124325-crop.jpg" data-pswp-width="2498" data-pswp-height="1874">
<img src="FLASC - Sticker Books/IMG_20250612_124325-crop.jpg" />
<span class="pswp-caption-content"><h1>FLASC Periodic Table Stickers 2024</h1><p>Sticker books. People could purchase a page of 6 stickers, spelling out 'FLASC' or 'Flinders' using periodic table elements</p><p>Designed in Inkscape</p><p>Printed by Moo Printing</p></span>
</a>
<a class="rasp-18 cols-2" href="FLASC - Sticker Books/IMG_20250908_151911~3-crop.jpg" data-pswp-width="3072" data-pswp-height="2304">
<img src="FLASC - Sticker Books/IMG_20250908_151911~3-crop.jpg" />
<span class="pswp-caption-content"><h1>FLASC Sticker Books 2024</h1><p>Sticker books to be used by the club (e.g. to label club assets)</p><p>Designed in Inkscape</p><p>Printed by Moo Printing</p></span>
</a>
<a class="rasp-18 cols-2" href="FLASC - Sticker Books/IMG_20250908_151929~2-crop.jpg" data-pswp-width="2486" data-pswp-height="1864">
<img src="FLASC - Sticker Books/IMG_20250908_151929~2-crop.jpg" />
<span class="pswp-caption-content"><h1>FLASC Membership Stickers '26</h1><p>Stickers for people to put on their student ID cards when joining FLASC</p><p>Designed in 2024 for multiple years</p><p>Designed in Inkscape</p><p>Printed by Moo Printing</p></span>
</a>
<a class="rasp-17 cols-2" href="FLASC - Periodic Table/Periodic Table 37.png" data-pswp-width="3308" data-pswp-height="2339">
<img src="FLASC - Periodic Table/Periodic Table 37.png" />
<span class="pswp-caption-content"><h1>FLASC Periodic Table 2022-2025</h1><p>An A4 periodic table, handed out to students during O'Week/etc</p><p>Designed to compress as much useful information into one sheet as possible</p><p>Designed in Word</p></span>
</a>
<a class="rasp-17 cols-2" href="FLASC - Tree of Life/Tree of Life 23.png" data-pswp-width="4320" data-pswp-height="3055">
<img src="FLASC - Tree of Life/Tree of Life 23.png" />
<span class="pswp-caption-content"><h1>FLASC Map of Evolution 2024</h1><p>An A4 map of evolution, handed out to students during O'Week/etc</p><p>Designed to compress as much useful information into one sheet as possible</p><p>All data was sourced from Kurzgesagt's existing <i>Map of Evolution</i> poster</p><p>Designed in Word</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Lab Brat/ig-squares-1a.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - Lab Brat/ig-squares-1a.png" />
<span class="pswp-caption-content"><h1>FLASC Lab Brat Pub Crawl 2024</h1><p>Instagram post (part 1 of 7) to advertise the event</p><p>Made in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Lab Brat/ig-squares-2a.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - Lab Brat/ig-squares-2a.png" />
<span class="pswp-caption-content"><h1>FLASC Lab Brat Pub Crawl 2024</h1><p>Instagram post (part 2 of 7) to advertise the event</p><p>Made in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Lab Brat/ig-squares-3a.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - Lab Brat/ig-squares-3a.png" />
<span class="pswp-caption-content"><h1>FLASC Lab Brat Pub Crawl 2024</h1><p>Instagram post (part 3 of 7) to advertise the event</p><p>Made in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Lab Brat/ig-squares-4a.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - Lab Brat/ig-squares-4a.png" />
<span class="pswp-caption-content"><h1>FLASC Lab Brat Pub Crawl 2024</h1><p>Instagram post (part 4 of 7) to advertise the event</p><p>Made in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Lab Brat/ig-squares-5a.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - Lab Brat/ig-squares-5a.png" />
<span class="pswp-caption-content"><h1>FLASC Lab Brat Pub Crawl 2024</h1><p>Instagram post (part 5 of 7) to advertise the event</p><p>Made in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Lab Brat/ig-squares-6a.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - Lab Brat/ig-squares-6a.png" />
<span class="pswp-caption-content"><h1>FLASC Lab Brat Pub Crawl 2024</h1><p>Instagram post (part 6 of 7) to advertise the event</p><p>Made in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Lab Brat/ig-squares-7a.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - Lab Brat/ig-squares-7a.png" />
<span class="pswp-caption-content"><h1>FLASC Lab Brat Pub Crawl 2024</h1><p>Instagram post (part 7 of 7) to advertise the event</p><p>Made in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Lab Brat/route-announcement-ig-square.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - Lab Brat/route-announcement-ig-square.png" />
<span class="pswp-caption-content"><h1>FLASC Lab Brat Pub Crawl 2024</h1><p>Instagram post to announce the route</p><p>Made in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Lab Brat/route-update-ig-square-v2.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - Lab Brat/route-update-ig-square-v2.png" />
<span class="pswp-caption-content"><h1>FLASC Lab Brat Pub Crawl 2024</h1><p>Instagram post to announce an updated route (nicely enough this received more engagement than the initial route announcement!)</p><p>Made in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Lab Brat/temporary-ig-profile-pic.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - Lab Brat/temporary-ig-profile-pic.png" />
<span class="pswp-caption-content"><h1>FLASC Lab Brat Pub Crawl 2024</h1><p>Temporary instagram profile picture for the club in the lead-up to the event</p><p>Made in Inkscape</p></span>
</a>
<a class="rasp-24 cols-2" href="FLASC - Lab Brat/lab-brat-poster-v2.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - Lab Brat/lab-brat-poster-v2.png" />
<span class="pswp-caption-content"><h1>FLASC Lab Brat Pub Crawl 2024</h1><p>Cryptic posters placed around campus to advertise the event</p><p>Made in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Lab Brat/P_20240805_000447~4.jpg" data-pswp-width="2539" data-pswp-height="2540">
<img src="FLASC - Lab Brat/P_20240805_000447~4.jpg" />
<span class="pswp-caption-content"><h1>FLASC Lab Brat Pub Crawl 2024</h1><p>Retro-reflective tank tops made for the event (torch OFF)</p><p>Five tops were hand-dyed, then reflective tape was cut with a scalpel and ironed on</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Lab Brat/P_20240805_000411~4.jpg" data-pswp-width="2539" data-pswp-height="2540">
<img src="FLASC - Lab Brat/P_20240805_000411~4.jpg" />
<span class="pswp-caption-content"><h1>FLASC Lab Brat Pub Crawl 2024</h1><p>Retro-reflective tank tops made for the event (torch ON)</p><p>Five tops were hand-dyed, then reflective tape was cut with a scalpel and ironed on</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Lab Brat/redbubble-shirts-1-crop.jpg" data-pswp-width="622" data-pswp-height="623">
<img src="FLASC - Lab Brat/redbubble-shirts-1-crop.jpg" />
<span class="pswp-caption-content"><h1>FLASC Lab Brat Pub Crawl 2024</h1><p>Merch sold via <nested-a href='https://www.redbubble.com/people/FLASC/shop'>Redbubble</nested-a> for the event</p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Lab Brat/square-apron.jpg" data-pswp-width="1000" data-pswp-height="1000">
<img src="FLASC - Lab Brat/square-apron.jpg" />
<span class="pswp-caption-content"><h1>FLASC Lab Brat Pub Crawl 2024</h1><p>Merch sold via <nested-a href='https://www.redbubble.com/people/FLASC/shop'>Redbubble</nested-a> for the event</p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Lab Brat/redbubble-cushion.jpg" data-pswp-width="1000" data-pswp-height="1000">
<img src="FLASC - Lab Brat/redbubble-cushion.jpg" />
<span class="pswp-caption-content"><h1>FLASC Lab Brat Pub Crawl 2024</h1><p>Merch sold via <nested-a href='https://www.redbubble.com/people/FLASC/shop'>Redbubble</nested-a> for the event</p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Lab Brat/square-mug.jpg" data-pswp-width="1000" data-pswp-height="1000">
<img src="FLASC - Lab Brat/square-mug.jpg" />
<span class="pswp-caption-content"><h1>FLASC Lab Brat Pub Crawl 2024</h1><p>Merch sold via <nested-a href='https://www.redbubble.com/people/FLASC/shop'>Redbubble</nested-a> for the event</p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Lab Brat/square-spiral-book.jpg" data-pswp-width="1000" data-pswp-height="1000">
<img src="FLASC - Lab Brat/square-spiral-book.jpg" />
<span class="pswp-caption-content"><h1>FLASC Lab Brat Pub Crawl 2024</h1><p>Merch sold via <nested-a href='https://www.redbubble.com/people/FLASC/shop'>Redbubble</nested-a> for the event</p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Lab Brat/redbubble-pet-bandanna.jpg" data-pswp-width="750" data-pswp-height="750">
<img src="FLASC - Lab Brat/redbubble-pet-bandanna.jpg" />
<span class="pswp-caption-content"><h1>FLASC Lab Brat Pub Crawl 2024</h1><p>Merch sold via <nested-a href='https://www.redbubble.com/people/FLASC/shop'>Redbubble</nested-a> for the event</p><p>Designed in Inkscape</p></span>
</a>
<a class="rasp-17 cols-2" href="FLASC - Lab Brat/Table of brat.png" data-pswp-width="3308" data-pswp-height="2339">
<img src="FLASC - Lab Brat/Table of brat.png" />
<span class="pswp-caption-content"><h1>FLASC Lab Brat Pub Crawl 2024</h1><p>The periodic table of brat: A joke version of the club's existing periodic table, used to advertise the event. The brat elements are mostly toxic, radioactive or explosive, but the choices were arbitrary</p><p>Made in Word</p></span>
</a>
<a class="rasp-24 cols-2" href="FLASC - Discord/Anchor-v5 smooth vibrant-2.png" data-pswp-width="4320" data-pswp-height="4320">
<img src="FLASC - Discord/Anchor-v5 smooth vibrant-2.png" />
<span class="pswp-caption-content"><h1>FLASC Discord Logo 2025</h1><p>A logo for a 'Flinders Science' discord server, covering chemistry, physics, biology, and more.</p><p>The science department at Flinders is centred around a courtyard known as Anchor Court, which has a big anchor in the middle, so I used that idea for the logo, rather than favouring any one discipline or trying to display all disciplines at once.</p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-16 asp-32 cols-1" href="FLASC - Redbubble Merch/work-163181612-spiral-notebook.jpg" data-pswp-width="750" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-163181612-spiral-notebook.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-16 asp-32 cols-1" href="FLASC - Redbubble Merch/work-163181750-active-t-shirt.jpg" data-pswp-width="750" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-163181750-active-t-shirt.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Redbubble Merch/work-163181612-throw-pillow.jpg" data-pswp-width="1000" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-163181612-throw-pillow.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Redbubble Merch/work-163181612-drawstring-bag.jpg" data-pswp-width="1000" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-163181612-drawstring-bag.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Redbubble Merch/work-163210631-classic-mug.jpg" data-pswp-width="750" data-pswp-height="750">
<img src="FLASC - Redbubble Merch/work-163210631-classic-mug.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Redbubble Merch/work-163210631-hardcover-journal.jpg" data-pswp-width="1000" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-163210631-hardcover-journal.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Redbubble Merch/work-163210631-magnet.jpg" data-pswp-width="1000" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-163210631-magnet.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Redbubble Merch/work-163210631-mouse-pad.jpg" data-pswp-width="1000" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-163210631-mouse-pad.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Redbubble Merch/work-163243027-socks.jpg" data-pswp-width="1000" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-163243027-socks.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Redbubble Merch/work-163243027-scarf.jpg" data-pswp-width="1000" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-163243027-scarf.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-16 asp-32 cols-1" href="FLASC - Redbubble Merch/work-163243027-a-line-dress.jpg" data-pswp-width="750" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-163243027-a-line-dress.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-16 asp-32 cols-1" href="FLASC - Redbubble Merch/work-163243027-apron.jpg" data-pswp-width="750" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-163243027-apron.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Redbubble Merch/work-163243027-throw-blanket.jpg" data-pswp-width="1000" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-163243027-throw-blanket.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Redbubble Merch/work-163243027-throw-pillow.jpg" data-pswp-width="1000" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-163243027-throw-pillow.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Redbubble Merch/work-163311294-classic-mug.jpg" data-pswp-width="750" data-pswp-height="750">
<img src="FLASC - Redbubble Merch/work-163311294-classic-mug.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Redbubble Merch/work-163311294-coasters-(set-of-4).jpg" data-pswp-width="1000" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-163311294-coasters-(set-of-4).jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Redbubble Merch/work-163311294-mouse-pad.jpg" data-pswp-width="1000" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-163311294-mouse-pad.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Redbubble Merch/work-163311294-throw-pillow.jpg" data-pswp-width="1000" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-163311294-throw-pillow.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-16 asp-32 cols-1" href="FLASC - Redbubble Merch/work-163470699-magnet.jpg" data-pswp-width="750" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-163470699-magnet.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-16 asp-32 cols-1" href="FLASC - Redbubble Merch/work-163470699-samsung-galaxy-tough-case.jpg" data-pswp-width="750" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-163470699-samsung-galaxy-tough-case.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Redbubble Merch/work-163470699-bucket-hat.jpg" data-pswp-width="1000" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-163470699-bucket-hat.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Redbubble Merch/work-163470699-laptop-skin.jpg" data-pswp-width="1000" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-163470699-laptop-skin.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Redbubble Merch/work-163470699-pin.jpg" data-pswp-width="1000" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-163470699-pin.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Redbubble Merch/work-163470699-spiral-notebook.jpg" data-pswp-width="1000" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-163470699-spiral-notebook.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-16 asp-32 cols-1" href="FLASC - Redbubble Merch/work-165885163-classic-mug.jpg" data-pswp-width="750" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-165885163-classic-mug.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-16 asp-32 cols-1" href="FLASC - Redbubble Merch/work-165885163-hardcover-journal.jpg" data-pswp-width="750" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-165885163-hardcover-journal.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-16 asp-32 cols-1" href="FLASC - Redbubble Merch/work-165885163-pullover-sweatshirt-brown-b.jpg" data-pswp-width="750" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-165885163-pullover-sweatshirt-brown.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-16 asp-32 cols-1" href="FLASC - Redbubble Merch/work-165885163-boxy-tee.jpg" data-pswp-width="750" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-165885163-boxy-tee.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-16 asp-32 cols-1" href="FLASC - Redbubble Merch/work-166724999-boxy-t-shirt.jpg" data-pswp-width="750" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-166724999-boxy-t-shirt.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-16 asp-32 cols-1" href="FLASC - Redbubble Merch/work-166724999-throw-pillow.jpg" data-pswp-width="750" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-166724999-throw-pillow.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Redbubble Merch/work-166724999-all-over-print-tote-bag.jpg" data-pswp-width="1000" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-166724999-all-over-print-tote-bag.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Redbubble Merch/work-166724999-pin.jpg" data-pswp-width="1000" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-166724999-pin.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Redbubble Merch/work-170617196-boxy-t-shirt.jpg" data-pswp-width="1000" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-170617196-boxy-t-shirt.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Redbubble Merch/work-170617196-magnet.jpg" data-pswp-width="1000" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-170617196-magnet.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-16 asp-32 cols-1" href="FLASC - Redbubble Merch/work-170939642-lightweight-sweatshirt.jpg" data-pswp-width="750" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-170939642-lightweight-sweatshirt.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-16 asp-32 cols-1" href="FLASC - Redbubble Merch/work-170939642-pullover-sweatshirt-b.jpg" data-pswp-width="750" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-170939642-pullover-sweatshirt-b.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Redbubble Merch/work-170939642-holographic-sticker.jpg" data-pswp-width="1000" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-170939642-holographic-sticker.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Redbubble Merch/work-170939642-pullover-sweatshirt.jpg" data-pswp-width="1000" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-170939642-pullover-sweatshirt.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-16 asp-32 cols-1" href="FLASC - Redbubble Merch/work-170939642-boxy-t-shirt.jpg" data-pswp-width="750" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-170939642-boxy-t-shirt.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-16 asp-32 cols-1" href="FLASC - Redbubble Merch/work-170939642-apron.jpg" data-pswp-width="750" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-170939642-apron.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-16 asp-32 cols-1" href="FLASC - Redbubble Merch/work-170939642-a-line-dress-b.jpg" data-pswp-width="750" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-170939642-a-line-dress-b.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-16 asp-32 cols-1" href="FLASC - Redbubble Merch/work-170939642-a-line-dress-c.jpg" data-pswp-width="750" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-170939642-a-line-dress-c.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-16 asp-32 cols-1" href="FLASC - Redbubble Merch/work-170941623-baseball-34-sleeve-t-shirt.jpg" data-pswp-width="750" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-170941623-baseball-34-sleeve-t-shirt.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-16 asp-32 cols-1" href="FLASC - Redbubble Merch/work-170941623-zipped-hoodie.jpg" data-pswp-width="750" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-170941623-zipped-hoodie.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-16 asp-32 cols-1" href="FLASC - Redbubble Merch/work-170941666-lightweight-hoodie.jpg" data-pswp-width="750" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-170941666-lightweight-hoodie.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-16 asp-32 cols-1" href="FLASC - Redbubble Merch/work-170941666-oversize-t-shirt.jpg" data-pswp-width="750" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-170941666-oversize-t-shirt.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-16 asp-32 cols-1" href="FLASC - Redbubble Merch/work-165884604-laptop-skin.jpg" data-pswp-width="750" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-165884604-laptop-skin.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-16 asp-32 cols-1" href="FLASC - Redbubble Merch/work-165884604-classic-t-shirt.jpg" data-pswp-width="750" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-165884604-classic-t-shirt.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Redbubble Merch/work-165884604-magnet.jpg" data-pswp-width="1000" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-165884604-magnet.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Redbubble Merch/work-165884604-zipper-pouch.jpg" data-pswp-width="1000" data-pswp-height="1000">
<img src="FLASC - Redbubble Merch/work-165884604-zipper-pouch.jpg" />
<span class="pswp-caption-content"><h1>FLASC Merch 2024-2025</h1><p>Merch sold via <nested-a href="https://www.redbubble.com/people/FLASC/shop">Redbubble</nested-a></p><p>Designed in Inkscape</p></span>
</a>
<a class="rasp-34 cols-2" href="FLASC - Barbenheimer Ball/Ball 2024 Poster digital.png" data-pswp-width="1414" data-pswp-height="2000">
<img src="FLASC - Barbenheimer Ball/Ball 2024 Poster digital.png" />
<span class="pswp-caption-content"><h1>Flinders Science Ball 2024 (Barbenheimer)</h1><p>Poster to advertise the event</p><p>Designed in Canva</p></span>
</a>
<a class="rasp-13 cols-2" href="FLASC - Barbenheimer Ball/Ball 2024 Slide.png" data-pswp-width="1920" data-pswp-height="1080">
<img src="FLASC - Barbenheimer Ball/Ball 2024 Slide.png" />
<span class="pswp-caption-content"><h1>Flinders Science Ball 2024 (Barbenheimer)</h1><p>TV slide to advertise the event</p><p>Designed in Canva</p></span>
</a>
<a class="rasp-14 cols-2" href="FLASC - Barbenheimer Ball/Ball 2024 Drinks Token.png" data-pswp-width="1004" data-pswp-height="591">
<img src="FLASC - Barbenheimer Ball/Ball 2024 Drinks Token.png" />
<span class="pswp-caption-content"><h1>Flinders Science Ball 2024 (Barbenheimer)</h1><p>Drinks tokens handed to guests as part of a sponsorship deal</p><p>Designed in Canva</p></span>
</a>
<a class="rasp-24 cols-2" href="FLASC - Barbenheimer Ball/P_20240325_151136-square.jpg" data-pswp-width="2963" data-pswp-height="2965">
<img src="FLASC - Barbenheimer Ball/P_20240325_151136-square.jpg" />
<span class="pswp-caption-content"><h1>Flinders Science Ball 2024 (Barbenheimer)</h1><p>Instagram post announcing a sponsorship deal, and showing the drinks tokens that would be handed to guests</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Barbenheimer Ball/IG-FB-1.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - Barbenheimer Ball/IG-FB-1.png" />
<span class="pswp-caption-content"><h1>Flinders Science Ball 2024 (Barbenheimer)</h1><p>Instagram post (part 1 of 4) to announce the event</p><p>Designed in Canva</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Barbenheimer Ball/IG-FB-2.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - Barbenheimer Ball/IG-FB-2.png" />
<span class="pswp-caption-content"><h1>Flinders Science Ball 2024 (Barbenheimer)</h1><p>Instagram post (part 2 of 4) to announce the event</p><p>Designed in Canva</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Barbenheimer Ball/IG-FB-3.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - Barbenheimer Ball/IG-FB-3.png" />
<span class="pswp-caption-content"><h1>Flinders Science Ball 2024 (Barbenheimer)</h1><p>Instagram post (part 3 of 4) to announce the event</p><p>Designed in Canva</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Barbenheimer Ball/IG-FB-4.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - Barbenheimer Ball/IG-FB-4.png" />
<span class="pswp-caption-content"><h1>Flinders Science Ball 2024 (Barbenheimer)</h1><p>Instagram post (part 4 of 4) to announce the event</p><p>Designed in Canva</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Barbenheimer Ball/IG-FB-5.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - Barbenheimer Ball/IG-FB-5.png" />
<span class="pswp-caption-content"><h1>Flinders Science Ball 2024 (Barbenheimer)</h1><p>Instagram post announcing a best-dressed competition (details were described in the caption, and the prizes were two sashes with the writing shown)</p><p>Instagram post designed in Canva</p><p>Sashes printed by 2Bling Craft Supply Store, Sydney West (via Ebay)</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Barbenheimer Ball/IG-FB-6.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - Barbenheimer Ball/IG-FB-6.png" />
<span class="pswp-caption-content"><h1>Flinders Science Ball 2024 (Barbenheimer)</h1><p>Instagram post calling for song requests</p><p>Designed in Canva</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Barbenheimer Ball/IG-FB-7.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - Barbenheimer Ball/IG-FB-7.png" />
<span class="pswp-caption-content"><h1>Flinders Science Ball 2024 (Barbenheimer)</h1><p>Instagram post announcing the drinks menu</p><p>Designed in Canva</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Glambrian Explosion Ball/IG 1.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - Glambrian Explosion Ball/IG 1.png" />
<span class="pswp-caption-content"><h1>Flinders Science Ball 2025 (The Glambrian Explosion)</h1><p>Instragram post (part 1 of 4) to announce the event</p><p>Designed in Canva</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Glambrian Explosion Ball/IG 2.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - Glambrian Explosion Ball/IG 2.png" />
<span class="pswp-caption-content"><h1>Flinders Science Ball 2025 (The Glambrian Explosion)</h1><p>Instragram post (part 2 of 4) to announce the event</p><p>Designed in Canva</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Glambrian Explosion Ball/IG 3.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - Glambrian Explosion Ball/IG 3.png" />
<span class="pswp-caption-content"><h1>Flinders Science Ball 2025 (The Glambrian Explosion)</h1><p>Instragram post (part 3 of 4) to announce the event</p><p>Designed in Canva</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Glambrian Explosion Ball/IG 4.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - Glambrian Explosion Ball/IG 4.png" />
<span class="pswp-caption-content"><h1>Flinders Science Ball 2025 (The Glambrian Explosion)</h1><p>Instragram post (part 4 of 4) to announce the event</p><p>Designed in Canva</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Glambrian Explosion Ball/IG 5.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - Glambrian Explosion Ball/IG 5.png" />
<span class="pswp-caption-content"><h1>Flinders Science Ball 2025 (The Glambrian Explosion)</h1><p>Instragram post calling for song requests</p><p>Designed in Canva</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Glambrian Explosion Ball/IG 6.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - Glambrian Explosion Ball/IG 6.png" />
<span class="pswp-caption-content"><h1>Flinders Science Ball 2025 (The Glambrian Explosion)</h1><p>Instragram post announcing when ticket sales opened</p><p>Designed in Canva</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Glambrian Explosion Ball/IG 7.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - Glambrian Explosion Ball/IG 7.png" />
<span class="pswp-caption-content"><h1>Flinders Science Ball 2025 (The Glambrian Explosion)</h1><p>Instragram post (part 1 of 10) to announce a best-dressed competition and show some photos from previous balls as outfit inspiration (parts 4-10 — omitted here)</p><p>Designed in Canva</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Glambrian Explosion Ball/IG 8.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - Glambrian Explosion Ball/IG 8.png" />
<span class="pswp-caption-content"><h1>Flinders Science Ball 2025 (The Glambrian Explosion)</h1><p>Instragram post (part 2 of 10) to announce a best-dressed competition and show some photos from previous balls as outfit inspiration (parts 4-10 — omitted here)</p><p>Designed in Canva</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - Glambrian Explosion Ball/IG 9.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - Glambrian Explosion Ball/IG 9.png" />
<span class="pswp-caption-content"><h1>Flinders Science Ball 2025 (The Glambrian Explosion)</h1><p>Instragram post (part 3 of 10) to announce a best-dressed competition and show some photos from previous balls as outfit inspiration (parts 4-10 — omitted here)</p><p>Designed in Canva</p></span>
</a>
<a class="rasp-34 cols-2" href="FLASC - Glambrian Explosion Ball/SciBall 2025 Poster V2.png" data-pswp-width="1414" data-pswp-height="2000">
<img src="FLASC - Glambrian Explosion Ball/SciBall 2025 Poster V2.png" />
<span class="pswp-caption-content"><h1>Flinders Science Ball 2025 (The Glambrian Explosion)</h1><p>Poster to advertise the event</p><p>Designed in Canva</p></span>
</a>
<a class="rasp-13 cols-2" href="FLASC - Glambrian Explosion Ball/SciBall 2025 TV Slide.png" data-pswp-width="1920" data-pswp-height="1080">
<img src="FLASC - Glambrian Explosion Ball/SciBall 2025 TV Slide.png" />
<span class="pswp-caption-content"><h1>Flinders Science Ball 2025 (The Glambrian Explosion)</h1><p>TV slide to advertise the event</p><p>Designed in Canva</p></span>
</a>
<a class="rasp-13 cols-2" href="FLASC - Glambrian Explosion Ball/SciBall 2025 Drinks Tokens.png" data-pswp-width="1920" data-pswp-height="1080">
<img src="FLASC - Glambrian Explosion Ball/SciBall 2025 Drinks Tokens.png" />
<span class="pswp-caption-content"><h1>Flinders Science Ball 2025 (The Glambrian Explosion)</h1><p>Drinks tokens given to guests who bought a non-alcoholic ticket (they could have 3x mocktails + soft drinks + juices)</p><p>Designed in Canva</p></span>
</a>
<a class="rasp-13 cols-2" href="FLASC - TV Slides/Slides-2025-1.PNG" data-pswp-width="1920" data-pswp-height="1080">
<img src="FLASC - TV Slides/Slides-2025-1.PNG" />
<span class="pswp-caption-content"><h1>FLASC TV Slides 2025</h1><p>Slides displayed on TVs around campus to let students know about FLASC and various programs run by FLASC</p><p>An earlier revision of this slide was designed by other club executives in Canva</p><p>Made in Powerpoint</p></span>
</a>
<a class="rasp-13 cols-2" href="FLASC - TV Slides/Slides-2025-2.PNG" data-pswp-width="1920" data-pswp-height="1080">
<img src="FLASC - TV Slides/Slides-2025-2.PNG" />
<span class="pswp-caption-content"><h1>FLASC TV Slides 2025</h1><p>Slides displayed on TVs around campus to let students know about FLASC and various programs run by FLASC</p><p>Made in Powerpoint</p></span>
</a>
<a class="rasp-13 cols-2" href="FLASC - TV Slides/Slides-2025-3.PNG" data-pswp-width="1920" data-pswp-height="1080">
<img src="FLASC - TV Slides/Slides-2025-3.PNG" />
<span class="pswp-caption-content"><h1>FLASC TV Slides 2025</h1><p>Slides displayed on TVs around campus to let students know about FLASC and various programs run by FLASC</p><p>Made in Powerpoint</p></span>
</a>
<a class="rasp-13 cols-2" href="FLASC - TV Slides/Slides-2025-4.PNG" data-pswp-width="1920" data-pswp-height="1080">
<img src="FLASC - TV Slides/Slides-2025-4.PNG" />
<span class="pswp-caption-content"><h1>FLASC TV Slides 2025</h1><p>Slides displayed on TVs around campus to let students know about FLASC and various programs run by FLASC</p><p>Made in Powerpoint</p></span>
</a>
<a class="rasp-13 cols-2" href="FLASC - TV Slides/Slides-2025-5.PNG" data-pswp-width="1920" data-pswp-height="1080">
<img src="FLASC - TV Slides/Slides-2025-5.PNG" />
<span class="pswp-caption-content"><h1>FLASC TV Slides 2025</h1><p>Slides displayed on TVs around campus to let students know about FLASC and various programs run by FLASC</p><p>Made in Powerpoint</p></span>
</a>
<a class="rasp-13 cols-2" href="FLASC - TV Slides/Slides-2025-6.PNG" data-pswp-width="1920" data-pswp-height="1080">
<img src="FLASC - TV Slides/Slides-2025-6.PNG" />
<span class="pswp-caption-content"><h1>FLASC TV Slides 2025</h1><p>Slides displayed on TVs around campus to let students know about FLASC and various programs run by FLASC</p><p>Made in Powerpoint</p></span>
</a>
<a class="rasp-13 cols-2" href="FLASC - TV Slides/Slides-2025-7.PNG" data-pswp-width="1920" data-pswp-height="1080">
<img src="FLASC - TV Slides/Slides-2025-7.PNG" />
<span class="pswp-caption-content"><h1>FLASC TV Slides 2025</h1><p>Slides displayed on TVs around campus to let students know about FLASC and various programs run by FLASC</p><p>Made in Powerpoint</p></span>
</a>
<a class="rasp-24 cols-2" href="FLASC - Christmas Door/P_20231201_175450.jpg" data-pswp-width="3072" data-pswp-height="3072">
<img src="FLASC - Christmas Door/P_20231201_175450.jpg" />
<span class="pswp-caption-content"><h1>FLASC Christmas Door 2023</h1><p>Decorating our common room door as part of a competition for christmas</p><p>Made in Word</p></span>
</a>
<a class="rasp-13 cols-2" href="FUCS - FUCS Studying!/FUCS Studying Slide 2022 S1 v5.png" data-pswp-width="1920" data-pswp-height="1080">
<img src="FUCS - FUCS Studying!/FUCS Studying Slide 2022 S1 v5.png" />
<span class="pswp-caption-content"><h1>FUCS Studying! (2022)</h1><p>TV slide to adverstise a study session. The computer character/mascot was made previously by other club execs.</p><p>Designed in Inkscape & Canva</p></span>
</a>
<a class="rasp-34 cols-2" href="FUCS - FUCS Studying!/FUCS Studying Poster 2022 S1 v8.png" data-pswp-width="1414" data-pswp-height="2000">
<img src="FUCS - FUCS Studying!/FUCS Studying Poster 2022 S1 v8.png" />
<span class="pswp-caption-content"><h1>FUCS Studying! (2022)</h1><p>Poster to adverstise a study session</p><p>Designed in Inkscape & Canva</p></span>
</a>
<a class="rasp-24 cols-2" href="FUCS - FUCS Studying!/FUCS Studying Social Media Square 2022 S1 v2.png" data-pswp-width="2000" data-pswp-height="2000">
<img src="FUCS - FUCS Studying!/FUCS Studying Social Media Square 2022 S1 v2.png" />
<span class="pswp-caption-content"><h1>FUCS Studying! (2022)</h1><p>Social media post to adverstise a study session</p><p>Designed in Inkscape & Canva</p></span>
</a>
<a class="rows-17 asp-34 cols-1" href="FUCS - Ukraine Pub Crawl/Shirt design v37a member.png" data-pswp-width="794" data-pswp-height="1123">
<img src="FUCS - Ukraine Pub Crawl/Shirt design v37a member.png" />
<span class="pswp-caption-content"><h1>FUCS Charity Pub Crawl for Ukraine 2022</h1><p>Shirt design for the pub crawl (blue shirts for regular attendees). The design was based on a rough sketch by the club president.</p><p>Designed in Inkscape</p><p>Screen-printed by Topline Promotions</p></span>
</a>
<a class="rows-17 asp-34 cols-1" href="FUCS - Ukraine Pub Crawl/Shirt design v37b exec.png" data-pswp-width="794" data-pswp-height="1123">
<img src="FUCS - Ukraine Pub Crawl/Shirt design v37b exec.png" />
<span class="pswp-caption-content"><h1>FUCS Charity Pub Crawl for Ukraine 2022</h1><p>Shirt design for the pub crawl (yellow shirts for club execs). The design was based on a rough sketch by the club president.</p><p>Designed in Inkscape</p><p>Screen-printed by Topline Promotions</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FUCS - Ukraine Pub Crawl/Social media square A v2.png" data-pswp-width="1200" data-pswp-height="1200">
<img src="FUCS - Ukraine Pub Crawl/Social media square A v2.png" />
<span class="pswp-caption-content"><h1>FUCS Charity Pub Crawl for Ukraine 2022</h1><p>Social media post to announce the event</p><p>Designed in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FUCS - Ukraine Pub Crawl/Social media square B route v17.png" data-pswp-width="1200" data-pswp-height="1200">
<img src="FUCS - Ukraine Pub Crawl/Social media square B route v17.png" />
<span class="pswp-caption-content"><h1>FUCS Charity Pub Crawl for Ukraine 2022</h1><p>Social media post to announce the route</p><p>Designed in Inkscape</p></span>
</a>
<a class="rasp-32 cols-2" href="FUCS - Ukraine Pub Crawl/Poster v10.png" data-pswp-width="794" data-pswp-height="1123">
<img src="FUCS - Ukraine Pub Crawl/Poster v10.png" />
<span class="pswp-caption-content"><h1>FUCS Charity Pub Crawl for Ukraine 2022</h1><p>Poster to advertise the event</p><p>Designed in Inkscape</p></span>
</a>
<a class="rasp-13 cols-2" href="FUCS - Ukraine Pub Crawl/Slide v6.png" data-pswp-width="1920" data-pswp-height="1080">
<img src="FUCS - Ukraine Pub Crawl/Slide v6.png" />
<span class="pswp-caption-content"><h1>FUCS Charity Pub Crawl for Ukraine 2022</h1><p>Slide to advertise the event</p><p>Designed in Inkscape</p></span>
</a>
<a class="rasp-12 cols-2" href="FUCS - Ukraine Pub Crawl/FB Banner v6.png" data-pswp-width="1920" data-pswp-height="1005">
<img src="FUCS - Ukraine Pub Crawl/FB Banner v6.png" />
<span class="pswp-caption-content"><h1>FUCS Charity Pub Crawl for Ukraine 2022</h1><p>Facebook event cover photo</p><p>Designed in Inkscape</p></span>
</a>
<a class="rasp-13 cols-2" href="FLASC - SWOTVAC Study Sessions/Slide v16 - complete 2023 S1.png" data-pswp-width="1920" data-pswp-height="1080">
<img src="FLASC - SWOTVAC Study Sessions/Slide v16 - complete 2023 S1.png" />
<span class="pswp-caption-content"><h1>FLASC SWOTVAC Study Sessions S1 2023</h1><p>TV slide to advertise the event</p><p>Made in Canva from components prepared in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - SWOTVAC Study Sessions/Social Square A v2 - complete 2023 S1.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - SWOTVAC Study Sessions/Social Square A v2 - complete 2023 S1.png" />
<span class="pswp-caption-content"><h1>FLASC SWOTVAC Study Sessions S1 2023</h1><p>Social media post to announce the event (part 1 of 6)</p><p>Made in Canva from components prepared in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - SWOTVAC Study Sessions/Social Square B v2 - complete 2023 S1 part 1.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - SWOTVAC Study Sessions/Social Square B v2 - complete 2023 S1 part 1.png" />
<span class="pswp-caption-content"><h1>FLASC SWOTVAC Study Sessions S1 2023</h1><p>Social media post to announce the event (part 2 of 6)</p><p>Made in Canva from components prepared in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - SWOTVAC Study Sessions/Social Square B v2 - complete 2023 S1 part 2.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - SWOTVAC Study Sessions/Social Square B v2 - complete 2023 S1 part 2.png" />
<span class="pswp-caption-content"><h1>FLASC SWOTVAC Study Sessions S1 2023</h1><p>Social media post to announce the event (part 3 of 6)</p><p>Made in Canva from components prepared in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - SWOTVAC Study Sessions/Social Square B v2 - complete 2023 S1 part 3.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - SWOTVAC Study Sessions/Social Square B v2 - complete 2023 S1 part 3.png" />
<span class="pswp-caption-content"><h1>FLASC SWOTVAC Study Sessions S1 2023</h1><p>Social media post to announce the event (part 4 of 6)</p><p>Made in Canva from components prepared in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - SWOTVAC Study Sessions/Social Square B v2 - complete 2023 S1 part 4.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - SWOTVAC Study Sessions/Social Square B v2 - complete 2023 S1 part 4.png" />
<span class="pswp-caption-content"><h1>FLASC SWOTVAC Study Sessions S1 2023</h1><p>Social media post to announce the event (part 5 of 6)</p><p>Made in Canva from components prepared in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1" href="FLASC - SWOTVAC Study Sessions/Social Square B v2 - complete 2023 S1 part 5.png" data-pswp-width="1080" data-pswp-height="1080">
<img src="FLASC - SWOTVAC Study Sessions/Social Square B v2 - complete 2023 S1 part 5.png" />
<span class="pswp-caption-content"><h1>FLASC SWOTVAC Study Sessions S1 2023</h1><p>Social media post to announce the event (part 6 of 6)</p><p>Made in Canva from components prepared in Inkscape</p></span>
</a>
<a class="rows-8 asp-16 cols-1" href="FLASC - SWOTVAC Study Sessions/Name Badge v1 - blank tutor.png" data-pswp-width="1004" data-pswp-height="650">
<img src="FLASC - SWOTVAC Study Sessions/Name Badge v1 - blank tutor.png" />
<span class="pswp-caption-content"><h1>FLASC SWOTVAC Study Sessions S1 2023</h1><p>Blank name badges for tutors</p><p>Made in Canva from components prepared in Inkscape</p></span>
</a>
<a class="rows-8 asp-16 cols-1" href="FLASC - SWOTVAC Study Sessions/Name Badge v1 - blank organiser.png" data-pswp-width="1004" data-pswp-height="650">
<img src="FLASC - SWOTVAC Study Sessions/Name Badge v1 - blank organiser.png" />
<span class="pswp-caption-content"><h1>FLASC SWOTVAC Study Sessions S1 2023</h1><p>Blank name badges for organisers</p><p>Made in Canva from components prepared in Inkscape</p></span>
</a>
<a class="rows-17 asp-34 cols-1" href="FLASC - SWOTVAC Study Sessions/A4 Poster v5 - blank.png" data-pswp-width="794" data-pswp-height="1123">
<img src="FLASC - SWOTVAC Study Sessions/A4 Poster v5 - blank.png" />
<span class="pswp-caption-content"><h1>FLASC SWOTVAC Study Sessions S1 2023</h1><p>Blank poster template to advertise SWOTVAC Study Sessions each year/semester</p><p>Made in Canva from components prepared in Inkscape</p></span>
</a>
<a class="rows-17 asp-34 cols-1" href="FLASC - SWOTVAC Study Sessions/Table Signs v2 - Chem.png" data-pswp-width="1414" data-pswp-height="2000">
<img src="FLASC - SWOTVAC Study Sessions/Table Signs v2 - Chem.png" />
<span class="pswp-caption-content"><h1>FLASC SWOTVAC Study Sessions S1 2023</h1><p>Sign to direct chem students to one table</p><p>Made in Canva from components prepared in Inkscape</p></span>
</a>
<a class="rows-17 asp-34 cols-1" href="FLASC - SWOTVAC Study Sessions/Table Signs v2 - Bio.png" data-pswp-width="1414" data-pswp-height="2000">
<img src="FLASC - SWOTVAC Study Sessions/Table Signs v2 - Bio.png" />
<span class="pswp-caption-content"><h1>FLASC SWOTVAC Study Sessions S1 2023</h1><p>Sign to direct bio students to one table</p><p>Made in Canva from components prepared in Inkscape</p></span>
</a>
<a class="rows-17 asp-34 cols-1" href="FLASC - SWOTVAC Study Sessions/Table Signs v2 - Phys.png" data-pswp-width="1414" data-pswp-height="2000">
<img src="FLASC - SWOTVAC Study Sessions/Table Signs v2 - Phys.png" />
<span class="pswp-caption-content"><h1>FLASC SWOTVAC Study Sessions S1 2023</h1><p>Sign to direct physics students to one table</p><p>Made in Canva from components prepared in Inkscape</p></span>
</a>
<a class="rows-12 asp-24 cols-1 nocrop" href="FLASC - Floor stickers/Floor stickers - cropped - up - 500px-wide.png" data-pswp-width="498" data-pswp-height="498">
<img src="FLASC - Floor stickers/Floor stickers - cropped - up - 500px-wide.png" />
<span class="pswp-caption-content"><h1>FLASC Floor Dots 2022</h1><p>Floor dots (40cm) leading the way to the club common room. These were based on the dots leading to our old room (indoors). However, they were ultimately abandoned before printing, once the uni decided that outdoor floor-dots would wear out too quickly (our new room had an outdoor entrance).</p><p>Designed in Canva & Krita</p></span>
</a>
<a class="rows-12 asp-24 cols-1 nocrop" href="FLASC - Floor stickers/Floor stickers - cropped - right - 500px-wide.png" data-pswp-width="498" data-pswp-height="498">
<img src="FLASC - Floor stickers/Floor stickers - cropped - right - 500px-wide.png" />
<span class="pswp-caption-content"><h1>FLASC Floor Dots 2022</h1><p>Floor dots (40cm) leading the way to the club common room. These were based on the dots leading to our old room (indoors). However, they were ultimately abandoned before printing, once the uni decided that outdoor floor-dots would wear out too quickly (our new room had an outdoor entrance).</p><p>Designed in Canva & Krita</p></span>
</a>
<a class="rows-12 asp-24 cols-1 nocrop" href="FLASC - Floor stickers/Floor stickers - cropped - left - 500px-wide.png" data-pswp-width="498" data-pswp-height="498">
<img src="FLASC - Floor stickers/Floor stickers - cropped - left - 500px-wide.png" />
<span class="pswp-caption-content"><h1>FLASC Floor Dots 2022</h1><p>Floor dots (40cm) leading the way to the club common room. These were based on the dots leading to our old room (indoors). However, they were ultimately abandoned before printing, once the uni decided that outdoor floor-dots would wear out too quickly (our new room had an outdoor entrance).</p><p>Designed in Canva & Krita</p></span>
</a>
<a class="rows-12 asp-24 cols-1 nocrop" href="FLASC - Floor stickers/Thinking CaPS old floor sticker.png" data-pswp-width="4711" data-pswp-height="4711">
<img src="FLASC - Floor stickers/Thinking CaPS old floor sticker.png" />
<span class="pswp-caption-content"><h1>FLASC Floor Dots 2022</h1><p>Prior design. The club rebranded from Thinking CaPS to FLASC, and moved to a new common room. The new floor dot design (made by me) was based upon this design (made by others).</p></span>
</a>
<a class="rows-9 asp-3 cols-6" href="FLASC - Table Banner/FLASC Table Banner v11 small.png" data-pswp-width="4904" data-pswp-height="566">
<img src="FLASC - Table Banner/FLASC Table Banner v11 small.png" />
<span class="pswp-caption-content"><h1>FLASC Table Banner 2022</h1><p>Coreflute banner to hang above the club's stall at O'Week and similar events.</p><p>Designed in Canva</p><p>Printed by EasySigns, NSW</p></span>
</a>
<a class="rows-9 asp-3 cols-6" href="FUCS - Table Banner/Table banner v19 1300x150.png" data-pswp-width="6656" data-pswp-height="768">
<img src="FUCS - Table Banner/Table banner v19 1300x150.png" />
<span class="pswp-caption-content"><h1>FUCS Table Banner 2022</h1><p>Coreflute banner to hang above the club's stall at O'Week and similar events.</p><p>Designed in Inkscape</p><p>Printed by EasySigns, NSW</p></span>
</a>
</div>
<script type="module">
import PhotoSwipeLightbox from './photoswipe/photoswipe-lightbox.esm.js';
import PhotoSwipe from './photoswipe/photoswipe.esm.js';
import PhotoSwipeDynamicCaption from './photoswipe/photoswipe-dynamic-caption-plugin.esm.js';
const lightbox = new PhotoSwipeLightbox({
gallery: '#gallery',
children: 'a',
pswpModule: PhotoSwipe,
paddingFn: (viewportSize) => { return { top: 30, bottom: 30, left: 70, right: 70 }},
});
const captionPlugin = new PhotoSwipeDynamicCaption(lightbox, {
type: 'auto',
captionContent: (slide) => {
return slide.data.element.querySelector('.pswp-caption-content').innerHTML.replaceAll('nested-a','a');
}
});
lightbox.init();
</script>
</body>
</html>