From a3c8f2180a38fa30505324a1140c7999076f929b Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Fri, 29 Jul 2022 16:42:44 +0200 Subject: fix animal crossing colors --- webAO/styles/chatbox/acww.css | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) (limited to 'webAO/styles/chatbox/acww.css') diff --git a/webAO/styles/chatbox/acww.css b/webAO/styles/chatbox/acww.css index 9818b4e..9a046e9 100644 --- a/webAO/styles/chatbox/acww.css +++ b/webAO/styles/chatbox/acww.css @@ -2,6 +2,38 @@ color: #000; } +.text_green { + color: #0f0; +} + +.text_red { + color: #f00; +} + +.text_orange { + color: #ffa500; +} + +.text_blue { + color: #b3b2fa; +} + +.text_yellow { + color: #ff0; +} + +.text_pink { + color: #ffc0cb; +} + +.text_cyan { + color: #0ff; +} + +.text_grey { + color: #bbb; +} + #client_chatcontainer { display: block; position: absolute; -- cgit From 1187161d3aee05f2d14c0561a685499bf48827cc Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Fri, 29 Jul 2022 17:08:42 +0200 Subject: fix up animal crossing --- webAO/styles/chatbox/acww.css | 47 ++++++++++++++++++++++++++----------------- 1 file changed, 29 insertions(+), 18 deletions(-) (limited to 'webAO/styles/chatbox/acww.css') diff --git a/webAO/styles/chatbox/acww.css b/webAO/styles/chatbox/acww.css index 9a046e9..6cb37da 100644 --- a/webAO/styles/chatbox/acww.css +++ b/webAO/styles/chatbox/acww.css @@ -3,19 +3,19 @@ } .text_green { - color: #0f0; + color: #009600; } .text_red { - color: #f00; + color: #ff0859; } .text_orange { - color: #ffa500; + color: #610000; } .text_blue { - color: #b3b2fa; + color: #7900ff; } .text_yellow { @@ -23,17 +23,33 @@ } .text_pink { - color: #ffc0cb; + color: #ff51ff; } -.text_cyan { - color: #0ff; +.text_cyan { + color: #0038ff; } .text_grey { color: #bbb; } +/* Webfont CSS setup for Igiari by Caveras */ + +@font-face { + font-family:'Igiari Cyrillic'; + src: url('../igiari/igiari-cyrillic.ttf'); + font-weight:normal; + font-style:normal; +} + +@font-face { + font-family:'Ace Name'; + src: url('./ace-name.ttf'); + font-weight:normal; + font-style:normal; +} + #client_chatcontainer { display: block; position: absolute; @@ -53,7 +69,7 @@ min-width: 11%; font-size: 0.8em; background: #d8f8a0; - color: #004000; + color: #040; margin: 0; padding-top: 0.4%; padding-left: 1.955%; @@ -61,11 +77,11 @@ border-color: #b0f818; border-style: solid; border-width: 0.3em 0.6em; - border-radius: 10%/50%; + border-radius: 15%/50%; box-shadow: 0 0.3em #70c020; line-height: 100%; z-index: 1; - font-family: sans-serif; + font-family: "Ace Name", "Igiari Cyrillic", "MS PGothic", "MS UI Gothic", "MS Sans Serif", "Hiragino Maru Gothic Pro", "Mitra Mono", "Mukti Narrow", "Meera", "Khmer OS", "FreeSans", "Gargi", sans-serif; } #client_inner_name { @@ -83,11 +99,6 @@ width: 100%; height: 87%; margin: auto; - /*border-color: darkgray; - border-style: solid; - border-width: 0.15em; - border-radius: 0.15em; - background-color: white;*/ background-image: url("acww.svg"); background-size: cover; background-repeat: no-repeat; @@ -96,11 +107,11 @@ text-align: left; overflow: hidden; scroll-behavior: smooth; - font-family: sans-serif; + font-family: "Igiari Cyrillic", "MS PGothic", "MS UI Gothic", "MS Sans Serif", "Hiragino Maru Gothic Pro", "Mitra Mono", "Mukti Narrow", "Meera", "Khmer OS", "FreeSans", "Gargi", sans-serif; } #client_inner_chat { - padding: 5% 12%; + padding: 5% 16%; margin: 0; line-height: 100%; } @@ -116,7 +127,7 @@ height: 1.5em; background-image: url("chatwaiting_acww.svg"); background-size: contain; - animation: idling 0.4s linear infinite; + animation: idling 0.4s steps(1) infinite; } @keyframes idling { -- cgit 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/acww.css | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'webAO/styles/chatbox/acww.css') diff --git a/webAO/styles/chatbox/acww.css b/webAO/styles/chatbox/acww.css index 6cb37da..ffda68b 100644 --- a/webAO/styles/chatbox/acww.css +++ b/webAO/styles/chatbox/acww.css @@ -142,4 +142,8 @@ 100% { bottom: 12%; } +} + +#client_trackstatus { + display: none; } \ No newline at end of file -- cgit From 9fcf758d8c125a24f279efc59614325405f85298 Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Wed, 17 Aug 2022 22:54:47 +0200 Subject: add ACWW clock --- webAO/styles/chatbox/acww.css | 69 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) (limited to 'webAO/styles/chatbox/acww.css') diff --git a/webAO/styles/chatbox/acww.css b/webAO/styles/chatbox/acww.css index ffda68b..00b2b7f 100644 --- a/webAO/styles/chatbox/acww.css +++ b/webAO/styles/chatbox/acww.css @@ -146,4 +146,73 @@ #client_trackstatus { display: none; +} + +#client_clock_date { + position: absolute; + width: 13%; + height: 4%; + right: 0; + top: 1%; + text-align: left; + color: #7d5500; + background: linear-gradient( + to bottom, + #ffef55, + #ffef55 20%, + #ffcf3c 20%, + #ffcf3c 40%, + #ffef55 40%, + #ffef55 60%, + #ffcf3c 60%, + #ffcf3c 80%, + #ffef55 80%, + #ffef55 100% + ); + border: 0.1em solid #ae4500; + border-radius: 50%; + border-bottom: none; + font-weight: bold; + padding-left: 1.5em; + padding-top: 0.5em; +} + +#client_clock_weekday { + position: absolute; + width: 2.5%; + height: 3%; + right: 1%; + top: 2%; + color: white; + background: green; + background-size: 100% 40%; + border: 0.1em solid green; + border-radius: 100%; +} + +#client_clock_time { + position: absolute; + width: 16%; + height: 4%; + right: 2%; + top: 4%; + text-align: center; + color: #5d5500; + background: linear-gradient( + to bottom, + rgba(255,255,0,0), + rgba(255,255,0,0) 20%, + #ffcf3c 20%, + #ffcf3c 40%, + #ffef55 40%, + #ffef55 60%, + #ffcf3c 60%, + #ffcf3c 80%, + #ffef55 80%, + #ffef55 100% + ); + border: 0.1em solid #ae4500; + border-radius: 50%; + border-top: none; + padding-top: 0.5em; } \ No newline at end of file -- cgit From 158008e16594e2c074c907a2656466baa9d6d9cf Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Fri, 19 Aug 2022 13:57:08 +0200 Subject: fix weekdays color --- webAO/styles/chatbox/acww.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'webAO/styles/chatbox/acww.css') diff --git a/webAO/styles/chatbox/acww.css b/webAO/styles/chatbox/acww.css index 00b2b7f..1f6699e 100644 --- a/webAO/styles/chatbox/acww.css +++ b/webAO/styles/chatbox/acww.css @@ -184,9 +184,9 @@ right: 1%; top: 2%; color: white; - background: green; + background: #00b63c; background-size: 100% 40%; - border: 0.1em solid green; + border: 0.1em solid #00b63c; border-radius: 100%; } -- cgit From e412b63731d851e8b05e2c28510716b3e0ce6e51 Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Sat, 27 Aug 2022 19:11:56 +0200 Subject: set the time --- webAO/styles/chatbox/acww.css | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'webAO/styles/chatbox/acww.css') diff --git a/webAO/styles/chatbox/acww.css b/webAO/styles/chatbox/acww.css index 1f6699e..dd899b9 100644 --- a/webAO/styles/chatbox/acww.css +++ b/webAO/styles/chatbox/acww.css @@ -177,6 +177,10 @@ padding-top: 0.5em; } +#client_clock_month { + display: none; +} + #client_clock_weekday { position: absolute; width: 2.5%; -- cgit