From ff254be061a765819b98849aca2689040abfa012 Mon Sep 17 00:00:00 2001 From: Kyle Florence Date: Tue, 4 Jun 2024 20:16:49 -0500 Subject: [PATCH] Add logo images --- readme.md | 2 ++ src/images/favicon.png | Bin 0 -> 761 bytes src/images/logo-black.svg | 21 +++++++++++++++++++++ src/images/logo-white.svg | 22 ++++++++++++++++++++++ src/index.html | 4 ++++ src/styles.css | 6 ++++++ 6 files changed, 55 insertions(+) create mode 100644 src/images/favicon.png create mode 100644 src/images/logo-black.svg create mode 100644 src/images/logo-white.svg diff --git a/readme.md b/readme.md index 061f494..0d4c83a 100644 --- a/readme.md +++ b/readme.md @@ -1,3 +1,5 @@ +Beaming Logo + # Beaming Beaming is a free, open source puzzle game that involves directing beams through a hexagonal grid. The rules and diff --git a/src/images/favicon.png b/src/images/favicon.png new file mode 100644 index 0000000000000000000000000000000000000000..0e01111e4d32d99893c96f3f45d2bc4b528dc4c0 GIT binary patch literal 761 zcmVC#k1NzP|xUuB3}Z@ym)zh9n1Q0KWidG=hE~ z9v`7xhV}KYYZPWck`J5!E*R1MK8!~5)yds}q%EKYcmU7O5Jm9zwphK~48(D10X`VP zQDh7(LoNm+1*CGG#Ki`g8jw`Sthx*E^aS_!^XL3CGBF^@1=^%?{_p^=ulDD%Y9P+} z3FfbnC^9R)wq|pdNq*QWB&h*}Kw~(BW)rGa*x7-zv*nxhBTCB_kmO;qGqH zS>H3af#fk46PNmMXhc`5aC!Ol`PbKQaA2;IjabcPAin*Fm`0`9gpCaon|bMUU~kX# zN9IgF=3ZP#t}B6^QK?9$r_$BcpK*I@;c+_7c{`~ThLY#m6Fxn*x1~`7M?6M$x(_i2Gx_zF{cU>t;;lyq!zV7e&%m rx<96JzE!lonUPeFGakx(t;~eqM=4AhpxSZa00000NkvXXu0mjfog84Z literal 0 HcmV?d00001 diff --git a/src/images/logo-black.svg b/src/images/logo-black.svg new file mode 100644 index 0000000..8fb2da2 --- /dev/null +++ b/src/images/logo-black.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/logo-white.svg b/src/images/logo-white.svg new file mode 100644 index 0000000..8880936 --- /dev/null +++ b/src/images/logo-white.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/index.html b/src/index.html index 1d13162..1a1ee16 100644 --- a/src/index.html +++ b/src/index.html @@ -13,6 +13,7 @@ + @@ -24,6 +25,9 @@

Beaming

+
+ +

Beaming is a free, open source, browser-based puzzle game that involves directing beams through a hexagonal grid. The rules and solution for each puzzle can be inferred by interaction and visual cues. Both diff --git a/src/styles.css b/src/styles.css index 5609c20..e02dac1 100644 --- a/src/styles.css +++ b/src/styles.css @@ -188,6 +188,12 @@ main { justify-content: center; } +#logo { + margin: 2em 0 1em 0; + max-width: 480px; + width: 75%; +} + #message { align-items: center; display: flex;