From 5385216e30f15f6016134975bd8fa2384c20cfbf Mon Sep 17 00:00:00 2001 From: sD Date: Wed, 10 Aug 2022 20:13:52 +0200 Subject: add track status to dr2 --- webAO/styles/chatbox/key.css | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'webAO/styles/chatbox/key.css') diff --git a/webAO/styles/chatbox/key.css b/webAO/styles/chatbox/key.css index 43efed4..c269334 100644 --- a/webAO/styles/chatbox/key.css +++ b/webAO/styles/chatbox/key.css @@ -133,4 +133,8 @@ 100% { transform: rotate(90deg) scaleY(1); } +} + +#client_trackstatus { + display: none; } \ No newline at end of file -- cgit From 4a794666f2bdcdde08ddabe12ec7a895266e6585 Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Wed, 17 Aug 2022 23:01:18 +0200 Subject: add clock css for styles that don't have clocks --- webAO/styles/chatbox/key.css | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'webAO/styles/chatbox/key.css') diff --git a/webAO/styles/chatbox/key.css b/webAO/styles/chatbox/key.css index c269334..74dc95a 100644 --- a/webAO/styles/chatbox/key.css +++ b/webAO/styles/chatbox/key.css @@ -137,4 +137,10 @@ #client_trackstatus { display: none; +} + +#client_clock { + position: absolute; + top: 1%; + left: 1%; } \ No newline at end of file -- cgit From 20cdeeda24c9ab9d216f2556c3658b118fe43c4b Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Sat, 27 Aug 2022 18:48:06 +0200 Subject: add key calendar --- webAO/styles/chatbox/key.css | 52 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) (limited to 'webAO/styles/chatbox/key.css') diff --git a/webAO/styles/chatbox/key.css b/webAO/styles/chatbox/key.css index 74dc95a..cf979e7 100644 --- a/webAO/styles/chatbox/key.css +++ b/webAO/styles/chatbox/key.css @@ -47,6 +47,7 @@ width: 100%; filter: none; font-family: "Verdana"; + transition: height 1s linear; } #client_chatdecoration { @@ -143,4 +144,55 @@ position: absolute; top: 1%; left: 1%; + width: 12%; + height: 15%; + background-color: #d59a9a; + border: #ffbe9f 3px ridge; + border-radius: 100%; +} + +#client_clock_month { + position: absolute; + width: 90%; + height: 15%; + left: 5%; + top: 8%; + margin: 0; + color: #52443c; + background: #ffb183; + border: 2px white outset; + border-radius: 100%; + text-shadow: -1px -1px 0 #d7e5d9, 1px -1px 0 #d7e5d9, -1px 1px 0 #d7e5d9, 1px 1px 0 #d7e5d9; +} + +#client_clock_date { + position: absolute; + width: 50%; + height: 50%; + left: 25%; + top: 25%; + margin: 0; + color: #fdf5e4; + text-shadow: -1px -1px 0 #78320b, 1px -1px 0 #78320b, -1px 1px 0 #78320b, 1px 1px 0 #78320b; + font-size: 3em; +} + +#client_clock_weekday { + position: absolute; + width: 25%; + height: 25%; + right: 0; + bottom: 0; + margin: 0; + color: gray; + text-shadow: -1px -1px 0 darkgray, 1px -1px 0 darkgray, -1px 1px 0 darkgray, 1px 1px 0 darkgray; + text-decoration: underline; + font-size: smaller; + background-color: #c7856f; + border: #ffc89f 3px ridge; + border-radius: 100%; +} + +#client_clock_time { + display: none; } \ No newline at end of file -- cgit From 2a79fa570e6e144e4124f3038214f6f49d2acac0 Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Sat, 27 Aug 2022 18:51:17 +0200 Subject: adjust the text --- webAO/styles/chatbox/key.css | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'webAO/styles/chatbox/key.css') diff --git a/webAO/styles/chatbox/key.css b/webAO/styles/chatbox/key.css index cf979e7..50d2bc1 100644 --- a/webAO/styles/chatbox/key.css +++ b/webAO/styles/chatbox/key.css @@ -163,6 +163,8 @@ border: 2px white outset; border-radius: 100%; text-shadow: -1px -1px 0 #d7e5d9, 1px -1px 0 #d7e5d9, -1px 1px 0 #d7e5d9, 1px 1px 0 #d7e5d9; + font-size: small; + line-height: 1; } #client_clock_date { @@ -188,9 +190,11 @@ text-shadow: -1px -1px 0 darkgray, 1px -1px 0 darkgray, -1px 1px 0 darkgray, 1px 1px 0 darkgray; text-decoration: underline; font-size: smaller; + font-weight: bold; background-color: #c7856f; border: #ffc89f 3px ridge; border-radius: 100%; + line-height: 2; } #client_clock_time { -- cgit From b87c498ee3e5fb1e6e90084fc093a66abaa311c6 Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Fri, 2 Sep 2022 19:56:57 +0200 Subject: optimize key and add bg --- webAO/styles/chatbox/key.css | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) (limited to 'webAO/styles/chatbox/key.css') diff --git a/webAO/styles/chatbox/key.css b/webAO/styles/chatbox/key.css index 50d2bc1..f6c8a7d 100644 --- a/webAO/styles/chatbox/key.css +++ b/webAO/styles/chatbox/key.css @@ -146,9 +146,11 @@ left: 1%; width: 12%; height: 15%; - background-color: #d59a9a; + background: url("bricks.svg"); + background-size: 1.5em; border: #ffbe9f 3px ridge; border-radius: 100%; + font-family: serif; } #client_clock_month { @@ -171,12 +173,15 @@ position: absolute; width: 50%; height: 50%; - left: 25%; - top: 25%; + left: 11%; + top: 11%; margin: 0; - color: #fdf5e4; + color: #ffe; text-shadow: -1px -1px 0 #78320b, 1px -1px 0 #78320b, -1px 1px 0 #78320b, 1px 1px 0 #78320b; font-size: 3em; + background: rgba(255,255,255,0.7); + border-radius: 100%; + padding: 0.25em; } #client_clock_weekday { @@ -186,8 +191,8 @@ right: 0; bottom: 0; margin: 0; - color: gray; - text-shadow: -1px -1px 0 darkgray, 1px -1px 0 darkgray, -1px 1px 0 darkgray, 1px 1px 0 darkgray; + color: #ccc; + text-shadow: -1px -1px 0 #333, 1px -1px 0 #333, -1px 1px 0 #333, 1px 1px 0 #333; text-decoration: underline; font-size: smaller; font-weight: bold; -- cgit From b383ea7dffa7bc3bdb9556491cf100a811578102 Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Sat, 3 Sep 2022 11:30:56 +0200 Subject: fix date being wonky when it's not the 5th --- webAO/styles/chatbox/key.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'webAO/styles/chatbox/key.css') diff --git a/webAO/styles/chatbox/key.css b/webAO/styles/chatbox/key.css index f6c8a7d..77f2e99 100644 --- a/webAO/styles/chatbox/key.css +++ b/webAO/styles/chatbox/key.css @@ -171,17 +171,17 @@ #client_clock_date { position: absolute; - width: 50%; - height: 50%; - left: 11%; - top: 11%; + width: 80%; + height: 80%; + left: 10%; + top: 10%; margin: 0; color: #ffe; text-shadow: -1px -1px 0 #78320b, 1px -1px 0 #78320b, -1px 1px 0 #78320b, 1px 1px 0 #78320b; font-size: 3em; background: rgba(255,255,255,0.7); border-radius: 100%; - padding: 0.25em; + line-height: 1.8; } #client_clock_weekday { -- cgit