aboutsummaryrefslogtreecommitdiff
path: root/webAO/styles/chatbox
diff options
context:
space:
mode:
authorsD <stoned@derpymail.org>2020-04-27 14:25:39 +0200
committersD <stoned@derpymail.org>2020-04-27 14:25:39 +0200
commit724890a8c0d2c7d91f693b1e3f1577d80bfb862f (patch)
tree3960ada529d011e6b752d2b759ef0201a6b883cc /webAO/styles/chatbox
parentd84660071ec8caaa9d97d5c6b6ba88a1f95bd29e (diff)
add a really bad persona 3 chatbox
Diffstat (limited to 'webAO/styles/chatbox')
-rw-r--r--webAO/styles/chatbox/chatboxes.js1
-rw-r--r--webAO/styles/chatbox/chatp3.css109
2 files changed, 110 insertions, 0 deletions
diff --git a/webAO/styles/chatbox/chatboxes.js b/webAO/styles/chatbox/chatboxes.js
index d31e349..880e6bb 100644
--- a/webAO/styles/chatbox/chatboxes.js
+++ b/webAO/styles/chatbox/chatboxes.js
@@ -6,6 +6,7 @@ export default [
"drv3",
"drae",
"legacy",
+ "chatp3",
"p4",
"chatplvsaa",
"trilogy",
diff --git a/webAO/styles/chatbox/chatp3.css b/webAO/styles/chatbox/chatp3.css
new file mode 100644
index 0000000..8e5468d
--- /dev/null
+++ b/webAO/styles/chatbox/chatp3.css
@@ -0,0 +1,109 @@
+body {
+ font-family: sans-serif;
+}
+
+.text_white {
+ color: #50545c;
+}
+
+.text_blue {
+ color: #6bc6f7;
+}
+
+.text_green {
+ color: #00f700;
+}
+
+.text_red {
+ color: #f00;
+}
+
+.text_orange {
+ color: #5c1d1b;
+}
+
+.text_yellow {
+ color: #ff0;
+}
+
+.text_pink {
+ color: #ffc0cb;
+}
+
+.text_cyan {
+ color: #0ff;
+}
+
+#client_chatcontainer {
+ display: block;
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ height: 30%;
+ width: 100%;
+ border-color: #d9e2f9;
+ border-width: 0.15em;
+ border-radius: 50% / 10%;
+ background-color: #aaaeb4;}
+
+#client_name {
+ display: block;
+ position: absolute;
+ left: 1%;
+ top: 6%;
+ height: 15%;
+ color: #5c1d1b;
+ z-index: 1;
+}
+
+#client_inner_name {
+ text-justify: distribute;
+ letter-spacing: 0.075em;
+ margin: 0;
+ font-weight: bold;
+}
+
+#client_chat {
+ display: block;
+ position: absolute;
+ bottom: 5%;
+ left: 2%;
+ width: 96%;
+ height: 70%;
+ margin: auto;
+ font-size: 2em;
+ word-break: keep-all;
+ overflow-wrap: break-word;
+ text-align: left;
+ overflow: hidden;
+ scroll-behavior: smooth;
+}
+
+#client_chat p {
+ padding: 0;
+ margin: 0;
+ line-height: 97%;
+}
+
+#client_chatwaiting {
+ display: block;
+ transform: rotate(90deg);
+ position: absolute;
+ right: 2%;
+ bottom: 0.5em;
+ line-height: 0.5;
+ color: #6a6c72;
+ animation: appear_down 0.5s linear;
+}
+
+@keyframes appear_down {
+ 0% {
+ bottom: 5em;
+ opacity: 0;
+ }
+
+ 100% {
+ bottom: 0.5em;
+ opacity: 1;
+ }
+} \ No newline at end of file