From e3c33e78d244ba80fb5d0040e839d1b7ae18dc60 Mon Sep 17 00:00:00 2001 From: and94x Date: Fri, 29 Dec 2023 02:33:19 +0100 Subject: [PATCH 1/3] =?UTF-8?q?fixed=20broken=20things=20without=20wearing?= =?UTF-8?q?=20cat=20ears=20=F0=9F=90=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- style.css | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index b78249a..2cbf71f 100644 --- a/style.css +++ b/style.css @@ -60,7 +60,7 @@ td.drawn.bingo:hover { img#center-field-image { max-height: calc(100vh / 6); - max-width: calc(100vh / 6); + max-width: calc(100vw / 6); } p#seeed { @@ -126,3 +126,15 @@ div#winner-message.won { opacity: 0; } } + +@media screen and (max-width: 767px) and (orientation: portrait){ + td { + font-size: large; + } +} + +@media screen and (max-width: 576px) and (orientation: portrait){ + td { + font-size: unset; + } +} \ No newline at end of file -- 2.39.5 From fac4290427a3f4a3edc2c40c124085552482d4fd Mon Sep 17 00:00:00 2001 From: and94x Date: Fri, 29 Dec 2023 02:44:57 +0100 Subject: [PATCH 2/3] =?UTF-8?q?fixed=20broken=20things=20without=20wearing?= =?UTF-8?q?=20cat=20ears=20=F0=9F=90=88=202/x?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- style.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index 2cbf71f..0b9e7f5 100644 --- a/style.css +++ b/style.css @@ -74,7 +74,7 @@ span#copy-permalink, span#refresh-bingo { div#winner-message { display: flex; position: fixed; - font-size: 3000%; + font-size: xx-large; text-shadow: 0 0 40px white; transition: all ease-out .75s; pointer-events: none; @@ -131,10 +131,16 @@ div#winner-message.won { td { font-size: large; } + div#winner-message.won { + animation: unset; + } } @media screen and (max-width: 576px) and (orientation: portrait){ td { font-size: unset; } + div#winner-message.won { + animation: unset; + } } \ No newline at end of file -- 2.39.5 From 91054af277356ce43417702ebacf1ca2124172ca Mon Sep 17 00:00:00 2001 From: and94x Date: Fri, 29 Dec 2023 02:50:20 +0100 Subject: [PATCH 3/3] =?UTF-8?q?fixed=20broken=20things=20without=20wearing?= =?UTF-8?q?=20cat=20ears=20=F0=9F=90=88=203/x?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- style.css | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/style.css b/style.css index 0b9e7f5..b1e01d9 100644 --- a/style.css +++ b/style.css @@ -127,20 +127,26 @@ div#winner-message.won { } } -@media screen and (max-width: 767px) and (orientation: portrait){ +@media screen and (max-width: 767px) and (orientation: portrait) { td { font-size: large; } div#winner-message.won { animation: unset; } + div#winner-message { + display: none; + } } -@media screen and (max-width: 576px) and (orientation: portrait){ +@media screen and (max-width: 576px) and (orientation: portrait) { td { font-size: unset; } div#winner-message.won { animation: unset; } + div#winner-message { + display: none; + } } \ No newline at end of file -- 2.39.5