From ea6ae980df858f2382ec1141beabe2dcae924c06 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Thu, 28 Aug 2025 12:30:11 +0200 Subject: [PATCH 01/17] move logo --- logo.html | 2 +- logo/index.html | 55 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+), 1 deletion(-) create mode 100644 logo/index.html diff --git a/logo.html b/logo.html index 395b799..0070846 100644 --- a/logo.html +++ b/logo.html @@ -38,7 +38,7 @@
- +
+ + From 60d7061399e819dd3b765445b778c124d5a02be9 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Thu, 28 Aug 2025 12:31:22 +0200 Subject: [PATCH 02/17] move logo --- logo.html | 55 --------------------------- {assets => logo/assets}/logo-all.png | Bin 2 files changed, 55 deletions(-) delete mode 100644 logo.html rename {assets => logo/assets}/logo-all.png (100%) diff --git a/logo.html b/logo.html deleted file mode 100644 index 0070846..0000000 --- a/logo.html +++ /dev/null @@ -1,55 +0,0 @@ - - - - -Logo - - - -
- -
- - - diff --git a/assets/logo-all.png b/logo/assets/logo-all.png similarity index 100% rename from assets/logo-all.png rename to logo/assets/logo-all.png From 98908b9e6097fb8450a503d3288dec9c15c55653 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Thu, 28 Aug 2025 12:31:51 +0200 Subject: [PATCH 03/17] move logo --- {logo/assets => assets}/logo-all.png | Bin logo/index.html | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename {logo/assets => assets}/logo-all.png (100%) diff --git a/logo/assets/logo-all.png b/assets/logo-all.png similarity index 100% rename from logo/assets/logo-all.png rename to assets/logo-all.png diff --git a/logo/index.html b/logo/index.html index 395b799..0070846 100644 --- a/logo/index.html +++ b/logo/index.html @@ -38,7 +38,7 @@
- +
From 7fa84d0d780c33eb437221edb67827f2972a8247 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Thu, 28 Aug 2025 14:20:26 +0200 Subject: [PATCH 05/17] update position --- logo/index.html | 1 - 1 file changed, 1 deletion(-) diff --git a/logo/index.html b/logo/index.html index 3c8a103..93bcb29 100644 --- a/logo/index.html +++ b/logo/index.html @@ -9,7 +9,6 @@ position: fixed; bottom: 24px; text-align: center; - margin-left: -60px; } *[data-animation="positionUpDownUp"] { From 32f0bb21d930dff2a4fd47c9456a099359d636c2 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Thu, 28 Aug 2025 14:21:23 +0200 Subject: [PATCH 06/17] update delay --- logo/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logo/index.html b/logo/index.html index 93bcb29..a40e736 100644 --- a/logo/index.html +++ b/logo/index.html @@ -99,7 +99,7 @@ const animateBuymeacoffe = () => { }, 10000) } -setInterval(animateLogo, 60000) +setInterval(animateLogo, 30000) setTimeout(animateLogo, 3000) setTimeout(animateBuymeacoffe, 3000) From d2bc83afc3054c2f58058b8bffea480438a2d8a5 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Thu, 28 Aug 2025 14:22:53 +0200 Subject: [PATCH 07/17] update delay --- logo/index.html | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/logo/index.html b/logo/index.html index a40e736..f9c3455 100644 --- a/logo/index.html +++ b/logo/index.html @@ -83,24 +83,17 @@ const logo = document.querySelector("#logo") const buymeacoffe = document.querySelector("#buymeacoffe") -const animateLogo = () => { +const animate = () => { logo.setAttribute('data-animation', 'positionUpDownUp') - - setTimeout(() => { - logo.setAttribute('data-animation', '') - }, 10000) -} - -const animateBuymeacoffe = () => { buymeacoffe.setAttribute('data-animation', 'positionDownUpDown') setTimeout(() => { + logo.setAttribute('data-animation', '') buymeacoffe.setAttribute('data-animation', '') }, 10000) } -setInterval(animateLogo, 30000) - +setInterval(animate, 30000) setTimeout(animateLogo, 3000) setTimeout(animateBuymeacoffe, 3000) From 9ddbfcb05b2b1fd01310cc09f2fc9f488d994ec1 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Thu, 28 Aug 2025 14:23:48 +0200 Subject: [PATCH 08/17] update delay --- logo/index.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/logo/index.html b/logo/index.html index f9c3455..b0325ec 100644 --- a/logo/index.html +++ b/logo/index.html @@ -94,8 +94,7 @@ const animate = () => { } setInterval(animate, 30000) -setTimeout(animateLogo, 3000) -setTimeout(animateBuymeacoffe, 3000) +setTimeout(animate, 3000) From 13e26dd0cbc6acf6bd9bdbce1f0b7df315ab4ce7 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Fri, 29 Aug 2025 12:21:53 +0200 Subject: [PATCH 09/17] refactor(logo): use html/css instead of img --- assets/logo-buymeacoffe.png | Bin 0 -> 741 bytes assets/logo-deblan.png | Bin 0 -> 696 bytes logo/index.html | 53 ++++++++++++++++++++++++++++++++++-- 3 files changed, 51 insertions(+), 2 deletions(-) create mode 100644 assets/logo-buymeacoffe.png create mode 100644 assets/logo-deblan.png diff --git a/assets/logo-buymeacoffe.png b/assets/logo-buymeacoffe.png new file mode 100644 index 0000000000000000000000000000000000000000..e7064d483eb6c129dd3e3dc7858eb532dde2d5b6 GIT binary patch literal 741 zcmVnGn>Apx*U2)E`j2>P;_v z6(*=jr4%IjsuH5Gf?VVZdw>xY>bBHfcY5KbcVj!}jBb8mFz)%@-{+j~dARoqDJ41j zAOe*06*pxQq(OdjUJ^OrsF3;hxGGDE?BB9ggXS@oMy!EK342>>nfhL?tb6BrjJ6{Q zeFrQlgp8n^)6o|`+Aq}ruy4;i=R0O;49`)$d6DEFLFAK%p{Ese_xYFanHi6&!5)G_ zPNI$2AGY+P$N>FeOAiLr**OXVOiX&{d054(cV1#Y*WmL?cGWM?dMHWzQGsYe|=|<~MCf z^Lx5X8M!vyqkAJWajg~G7Tmt;r@FCD>s3bm{PjATFKpEo zDWsm8F^(TDzTk|uQzYtPhqYh?G~G`6{DA!@gKES2i{NcE>R47r`?#Pg&%l=6+-p%$ z*!$05OFb+3Pgs?Vq6Qdw=F@r}j8wW0?t4_F_4Gg1drAiP8-VXWae2g{V2ZhU0i=tY z=Eqn}!%o9(X9Paok~s*H!^KUBK>#{h%$`za;A8Pj@qPvP9ssABa;rQ8EAD?L+^-8FC`Sz15UU>nUryrP-|A;t!LOGl&QH`-HyKWtIyQ>=QYY=TCw zw^=ov4KV)RTd?iiiCJ!4`(XyQq*(cqSdAC@3>2Jm?D)L+-_TrewxNVMHe_($B X%U0G6Kn$a000000NkvXXu0mjf?%PyQ literal 0 HcmV?d00001 diff --git a/assets/logo-deblan.png b/assets/logo-deblan.png new file mode 100644 index 0000000000000000000000000000000000000000..35eeb5ccb98a78470ff05e0abb8a5a33cd6b6497 GIT binary patch literal 696 zcmV;p0!RIcP)xnd=B^kT#F!IOi|CPqF*8(0be5Q01VR^218h!q5Bp|-b;bQhz;jXk-Q%p z_S5t{|DWU%8}?b`gIMyS)T&|y*hg=;-$2*K4sh!v(io~LLF^)ctor4Djo+RNfl z6YJ_oxLrHIDw^>vv}+;xAtAcg3_K(BJ_xvmH5WO^7Xnh_5Pk{Tj<}vV*@$;z% z+y-8m{xk5vY~a|q3p{hUhCcas;BDZPg(m{M0CG>i13X7Fy$!q%*zoWEseXPwunESc zlMue&1@#cZnGX8kI1#yvvYy_vaXp6IO}J&kW#V2MS4xZ*&+AqUx$AjKxM{fLWnnGI zr9?kGjvT_FcfGk7&}WRp-3{nLqv~Q1x@2CX{raav=02C7GWpbA1MUD9YkqzLH3EU4k&;<1Vt0g8oRKxZaXrd2_0&W6l eX#N}mH~s-%}tU30000 Logo + + + +
- +
- +
+ + buymeacoffee.com/deblan +