aboutsummaryrefslogtreecommitdiff
path: root/webAO/styles/chatbox
diff options
context:
space:
mode:
Diffstat (limited to 'webAO/styles/chatbox')
-rw-r--r--webAO/styles/chatbox/aa.css139
-rw-r--r--webAO/styles/chatbox/chatboxes.js9
-rw-r--r--webAO/styles/chatbox/chatdd.css48
-rw-r--r--webAO/styles/chatbox/chatwaiting_triology.svg1
-rw-r--r--webAO/styles/chatbox/cyber.css62
-rw-r--r--webAO/styles/chatbox/default.css38
-rw-r--r--webAO/styles/chatbox/dgs.css54
-rw-r--r--webAO/styles/chatbox/dgs_chat_bg.pngbin0 -> 1763 bytes
-rw-r--r--webAO/styles/chatbox/drae.css48
-rw-r--r--webAO/styles/chatbox/triology.css139
-rw-r--r--webAO/styles/chatbox/yttd.css54
11 files changed, 592 insertions, 0 deletions
diff --git a/webAO/styles/chatbox/aa.css b/webAO/styles/chatbox/aa.css
new file mode 100644
index 0000000..9a1b304
--- /dev/null
+++ b/webAO/styles/chatbox/aa.css
@@ -0,0 +1,139 @@
+@font-face {
+ font-family: 'ace_attorneyregular';
+ src: url('ace-attorney.woff2') format('woff2'),
+ url('ace-attorney.woff') format('woff');
+ font-weight: normal;
+ font-style: normal;
+}
+
+.text_white {
+ color: #fff;
+}
+
+.text_blue {
+ color: #6bc6f7;
+}
+
+.text_green {
+ color: #00f700;
+}
+
+.text_red {
+ color: #f00;
+}
+
+.text_orange {
+ color: #f77339;
+}
+
+.text_yellow {
+ color: #ff0;
+}
+
+.text_pink {
+ color: #ffc0cb;
+}
+
+.text_cyan {
+ color: #0ff;
+}
+
+.text_rainbow {
+ background-color: #fff;
+ background-image: repeating-linear-gradient(to right,
+ red 0% 8%, orange 8% 16%, yellow 16% 24%, green 24% 32%, blue 32% 40%,
+ red 40% 48%, orange 48% 56%, yellow 56% 64%, green 64% 72%, blue 72% 80%,
+ red 80% 88%, orange 88% 96%, yellow 96% 100%);
+ background-size: 40% 40%;
+ background-clip: text;
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ animation: rainbow 4s linear infinite;
+}
+
+@keyframes rainbow {
+ 0% {
+ background-position: 0 0;
+ }
+
+ 100% {
+ background-position: 400% 0;
+ }
+}
+
+#client_chatcontainer {
+ filter: none;
+ font-family: "Ace Attorney", "ace_attorneyregular", "MS PGothic", "MS UI Gothic", "MS Sans Serif", "Hiragino Maru Gothic Pro", "Mitra Mono", "Mukti Narrow", "Meera", "Khmer OS", "FreeSans", "Gargi" , sans-serif;
+}
+
+#client_name {
+ display: none;
+ padding: 0 0.45em;
+ height: 5.2%;
+ min-width: 3.25em;
+ text-justify: distribute;
+ letter-spacing: 0.075em;
+ font-weight: bold;
+ background: rgba(56, 56, 163, 0.5);
+ box-shadow: 0.075em 0.075em rgba(0, 56, 163, 0.5) inset;
+ left: 0;
+ top: 60.4%;
+ border-color: rgba(255, 255, 255, 0.5);
+ border-style: ridge groove groove ridge;
+ border-width: 0.2em;
+ border-radius: 0.2em;
+ position: absolute;
+ z-index: 1;
+}
+
+#client_chat {
+ font-size: 1em;
+ display: none;
+ width: 98.4375%;
+ width: calc(100% - 0.275em);
+ margin: auto;
+ height: 31.25%;
+ border-color: rgba(255, 255, 255, 0.5);
+ border-style: ridge groove groove ridge;
+ border-width: 0.15em;
+ border-radius: 0.3em;
+ background-color: rgba(0, 0, 16, 0.5);
+ top: 66.5%;
+ position: absolute;
+ word-break: keep-all;
+ overflow-wrap: break-word;
+ text-align: left;
+ overflow: hidden;
+ scroll-behavior: smooth;
+}
+
+#client_chat p {
+ padding: 1% 3.13%;
+ margin: 1px;
+ line-height: 97%;
+ letter-spacing: 0.05em;
+ word-spacing: 0.3em;
+}
+
+#client_chatwaiting {
+ display: block;
+ right: -6px;
+ bottom: 0.2em;
+ width: 1em;
+ position: absolute;
+ animation: idling 0.4s linear infinite;
+}
+
+@keyframes idling {
+ 0% {
+ right: -4px;
+ }
+
+ 50% {
+ right: -8px;
+ }
+
+ 100% {
+ right: -4px;
+ }
+} \ No newline at end of file
diff --git a/webAO/styles/chatbox/chatboxes.js b/webAO/styles/chatbox/chatboxes.js
new file mode 100644
index 0000000..a815424
--- /dev/null
+++ b/webAO/styles/chatbox/chatboxes.js
@@ -0,0 +1,9 @@
+export default [
+ "aa",
+ "chatdd",
+ "cyber",
+ "default",
+ "dgs",
+ "drae",
+ "yttd"
+]; \ No newline at end of file
diff --git a/webAO/styles/chatbox/chatdd.css b/webAO/styles/chatbox/chatdd.css
new file mode 100644
index 0000000..ef63980
--- /dev/null
+++ b/webAO/styles/chatbox/chatdd.css
@@ -0,0 +1,48 @@
+#client_chatcontainer {
+ position: absolute;
+ top: 73%;
+ height: 27%;
+ width: 100%;
+ font-family: sans-serif;
+ background-image: url("../images/chatbox.svg");
+ background-size: cover;
+ background-repeat: no-repeat;
+}
+
+#client_name {
+ display: none;
+ top: 4%;
+ padding: 0 10px;
+ height: 22%;
+ position: absolute;
+}
+
+#client_chat {
+ font-size: 1em;
+ display: none;
+ width: 100%;
+ margin: auto;
+ height: 90%;
+ top: 20%;
+ position: absolute;
+ word-break: keep-all;
+ word-wrap: break-word;
+ overflow-wrap: break-word;
+ text-align: left;
+ overflow: hidden;
+ scroll-behavior: smooth;
+}
+
+#client_chat p {
+ margin: 4px;
+ padding: 5px 3%;
+}
+
+#client_chatwaiting {
+ display: block;
+ right: 1em;
+ bottom: 0.6em;
+ width: 1em;
+ position: absolute;
+ animation: idling 1s linear infinite;
+} \ No newline at end of file
diff --git a/webAO/styles/chatbox/chatwaiting_triology.svg b/webAO/styles/chatbox/chatwaiting_triology.svg
new file mode 100644
index 0000000..6ce23eb
--- /dev/null
+++ b/webAO/styles/chatbox/chatwaiting_triology.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 15.9 15.9"><defs/><g fill="#ffd660" stroke="#b58a18" stroke-linecap="round" stroke-linejoin="round" stroke-width=".3"><path d="M.1.1H4L9.3 8 4 15.7H0L5.3 8z"/><path d="M6.6.1h4L15.7 8l-5.1 7.8h-4L12 8z"/></g></svg> \ No newline at end of file
diff --git a/webAO/styles/chatbox/cyber.css b/webAO/styles/chatbox/cyber.css
new file mode 100644
index 0000000..75821f7
--- /dev/null
+++ b/webAO/styles/chatbox/cyber.css
@@ -0,0 +1,62 @@
+@keyframes bg-scrolling {
+ 0% { background-position: 0 0; }
+ 100% { background-position: 5px 5px; }
+}
+
+#client_chatcontainer {
+ filter: none;
+}
+
+#client_name {
+ display: none;
+ padding: 0 0.45em;
+ height: 5.2%;
+ min-width: 3.25em;
+ text-justify: distribute;
+ letter-spacing: 0.075em;
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFElEQVQImWNgYGDYjAVTV/A/w2YAfxQSe53wkNkAAAAASUVORK5CYII=) repeat;
+ animation: bg-scrolling 0.2s infinite linear;
+ left: 0;
+ top: 60.4%;
+ border-color: green;
+ border-width: 0.2em;
+ border-style: solid;
+ position: absolute;
+ z-index: 1;
+}
+
+#client_chat {
+ font-size: 1em;
+ display: none;
+ width: 98.4375%;
+ width: calc(100% - 0.275em);
+ margin: auto;
+ height: 31.25%;
+ border-color: green;
+ border-style: solid;
+ border-width: 0.15em;
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFElEQVQImWNgYGDYjAVTV/A/w2YAfxQSe53wkNkAAAAASUVORK5CYII=) repeat;
+ animation: bg-scrolling 0.2s infinite linear;
+ top: 66.5%;
+ position: absolute;
+ word-break: keep-all;
+ overflow-wrap: break-word;
+ text-align: left;
+ overflow: hidden;
+ scroll-behavior: smooth;
+}
+
+#client_chat p {
+ padding: 1% 3.13%;
+ margin: 1px;
+ line-height: 97%;
+}
+
+#client_chatwaiting {
+ display: block;
+ right: -6px;
+ bottom: 0.24em;
+ width: 1em;
+ position: absolute;
+ animation: idling 0.4s linear infinite;
+} \ No newline at end of file
diff --git a/webAO/styles/chatbox/default.css b/webAO/styles/chatbox/default.css
new file mode 100644
index 0000000..4e86f2a
--- /dev/null
+++ b/webAO/styles/chatbox/default.css
@@ -0,0 +1,38 @@
+#client_name {
+ display: none;
+ padding: 0px 6px;
+ height: 7%;
+ border: 1px solid rgba(255, 255, 255, 0.7);
+ background: rgba(73, 0, 254, 0.5);
+ top: 63%;
+ border-radius: 3px;
+ position: absolute;
+}
+
+#client_chat {
+ font-size: 1em;
+ display: none;
+ width: 98%;
+ width: calc(100% - 4px);
+ margin: auto;
+ height: 30%;
+ border: 2px solid rgba(255, 255, 255, 0.7);
+ background-color: rgba(0, 0, 0, 0.5);
+ top: 70%;
+ border-radius: 4px;
+ position: absolute;
+ word-break: keep-all;
+ word-wrap: break-word;
+ overflow-wrap: break-word;
+ text-align: left;
+ overflow: hidden;
+ scroll-behavior: smooth;
+}
+
+#client_chat p {
+ margin: 4px;
+}
+
+#client_chatwaiting {
+ display: none;
+} \ No newline at end of file
diff --git a/webAO/styles/chatbox/dgs.css b/webAO/styles/chatbox/dgs.css
new file mode 100644
index 0000000..8e72484
--- /dev/null
+++ b/webAO/styles/chatbox/dgs.css
@@ -0,0 +1,54 @@
+@font-face {
+ font-family: 'Cabin Condensed';
+ font-style: normal;
+ font-weight: 400;
+ font-display: swap;
+ src: local('Cabin Condensed'), local('CabinCondensed-Regular'), url(https://fonts.gstatic.com/s/cabincondensed/v13/nwpMtK6mNhBK2err_hqkYhHRqmwqZ-LY.woff2) format('woff2');
+}
+
+#client_chatcontainer {
+ font-family: 'Cabin Condensed', sans-serif;
+}
+
+#client_name {
+ display: none;
+ padding: 0px 6px;
+ height: 5%;
+ border: 1px solid #a59252;
+ background-image: linear-gradient(#635529, #8c7d42);
+ left: 2%;
+ top: 65%;
+ border-radius: 3px;
+ position: absolute;
+ z-index: 1;
+}
+
+#client_chat {
+ font-size: 1em;
+ display: none;
+ width: 100%;
+ margin: auto;
+ height: 30%;
+ border-image-source: url("dgs_chat_bg.png");
+ border-image-slice: 12;
+ border-image-width: 12px;
+ border-width: 12px;
+ background-color: #101821;
+ top: 70%;
+ position: absolute;
+ word-break: keep-all;
+ word-wrap: break-word;
+ overflow-wrap: break-word;
+ text-align: left;
+ overflow: hidden;
+ scroll-behavior: smooth;
+}
+
+#client_chat p {
+ margin: 6px;
+ padding: 6px 20px;
+}
+
+#client_chatwaiting {
+ display: none;
+} \ No newline at end of file
diff --git a/webAO/styles/chatbox/dgs_chat_bg.png b/webAO/styles/chatbox/dgs_chat_bg.png
new file mode 100644
index 0000000..90e408a
--- /dev/null
+++ b/webAO/styles/chatbox/dgs_chat_bg.png
Binary files differ
diff --git a/webAO/styles/chatbox/drae.css b/webAO/styles/chatbox/drae.css
new file mode 100644
index 0000000..397dcfd
--- /dev/null
+++ b/webAO/styles/chatbox/drae.css
@@ -0,0 +1,48 @@
+#client_chatcontainer {
+ font-family: sans-serif;
+}
+
+#client_name {
+ display: none;
+ padding: 0 0.45em;
+ height: 5.2%;
+ width: 40%;
+ text-align: left;
+ letter-spacing: 0.075em;
+ font-weight: bold;
+ background: rgba(255, 0, 187, 0.9);
+ left: 0;
+ bottom: 31.25%;
+ position: absolute;
+ z-index: 1;
+}
+
+#client_chat {
+ font-size: 1em;
+ display: none;
+ width: 100%;
+ margin: auto;
+ height: 31.25%;
+ border-top: 2px solid #ff00ab;
+ border-bottom: 2px solid #e9019e;
+ background-image: linear-gradient(rgba(33,18,28,0.75),rgba(45,18,36,0.75));
+ bottom: 0;
+ position: absolute;
+ word-break: keep-all;
+ overflow-wrap: break-word;
+ text-align: left;
+ overflow: hidden;
+ scroll-behavior: smooth;
+}
+
+#client_chat p {
+ padding: 1% 3.13%;
+ margin: 1px;
+ line-height: 97%;
+ letter-spacing: 0.05em;
+ word-spacing: 0.3em;
+}
+
+#client_chatwaiting {
+ display: none;
+} \ No newline at end of file
diff --git a/webAO/styles/chatbox/triology.css b/webAO/styles/chatbox/triology.css
new file mode 100644
index 0000000..08a7e3f
--- /dev/null
+++ b/webAO/styles/chatbox/triology.css
@@ -0,0 +1,139 @@
+.text_white {
+ color: #fff;
+}
+
+.text_green {
+ color: #00c900;
+}
+
+.text_red {
+ color: #ff1700;
+}
+
+.text_orange {
+ color: #ffa500;
+}
+
+.text_blue {
+ color: #67b7ed;
+}
+
+.text_yellow {
+ color: #ff0;
+}
+
+.text_pink {
+ color: #ffc0cb;
+}
+
+.text_cyan {
+ color: #0ff;
+}
+
+.text_rainbow {
+ background-color: #fff;
+ background-image: repeating-linear-gradient(to right,
+ red 0% 8%, orange 8% 16%, yellow 16% 24%, green 24% 32%, blue 32% 40%,
+ red 40% 48%, orange 48% 56%, yellow 56% 64%, green 64% 72%, blue 72% 80%,
+ red 80% 88%, orange 88% 96%, yellow 96% 100%);
+ background-size: 40% 40%;
+ background-clip: text;
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ animation: rainbow 4s linear infinite;
+}
+
+@keyframes rainbow_alt {
+
+ 0%,
+ 100% {
+ background-position: 0 0;
+ }
+
+ 50% {
+ background-position: 400% 0;
+ }
+}
+
+@keyframes rainbow {
+ 0% {
+ background-position: 0 0;
+ }
+
+ 100% {
+ background-position: 400% 0;
+ }
+}
+
+#client_chatcontainer {
+ position: absolute;
+ top: 65%;
+ height: 30%;
+ width: 100%;
+ font-family: "FOTK-Yoon Mincho 740", serif;
+}
+
+#client_name {
+ display: none;
+ background-color: #2989bd;
+ top: 0;
+ left: 10%;
+ padding: 0 10px;
+ height: 20%;
+ min-width: 15%;
+ border: 1px white;
+ border-style: solid none solid none;
+ position: absolute;
+ z-index: 1;
+}
+
+#client_chat {
+ font-size: 1em;
+ display: none;
+ width: 100%;
+ margin: auto;
+ height: 90%;
+ top: 10%;
+ position: absolute;
+ word-break: keep-all;
+ word-wrap: break-word;
+ overflow-wrap: break-word;
+ text-align: left;
+ overflow: hidden;
+ scroll-behavior: smooth;
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAL0lEQVQImWOQ98nYzGsVupnXKnSzvE8GCmaASWBTgF8S3VhkNgOySnRTiJdENxYAYC1Ff2vnYrkAAAAASUVORK5CYII=) repeat;
+ border: 1px white;
+ border-style: solid none solid none;
+}
+
+#client_chat p {
+ margin: 4px;
+ padding: 2% 5%;
+}
+
+#client_chatwaiting {
+ display: block;
+ color: transparent;
+ right: 0.6em;
+ bottom: 0.6em;
+ width: 1em;
+ height: 1em;
+ background-image: url("chatwaiting_triology.svg");
+ background-size: contain;
+ position: absolute;
+ animation: idling 0.5s ease infinite;
+}
+
+@keyframes idling {
+ 0% {
+ right: 0.6em;
+ }
+
+ 25% {
+ right: 0.7em;
+ }
+
+ 100% {
+ right: 0.6em;
+ }
+} \ No newline at end of file
diff --git a/webAO/styles/chatbox/yttd.css b/webAO/styles/chatbox/yttd.css
new file mode 100644
index 0000000..c5fa50a
--- /dev/null
+++ b/webAO/styles/chatbox/yttd.css
@@ -0,0 +1,54 @@
+
+#client_name {
+ display: none;
+ padding: 0 0.45em;
+ height: 5.2%;
+ min-width: 3.25em;
+ text-justify: distribute;
+ letter-spacing: 0.075em;
+ font-weight: bold;
+ background-color: black;
+ box-shadow: 0.075em 0.075em rgba(0, 56, 163, 0.5) inset;
+ left: 0;
+ top: 60.4%;
+ border-style: double;
+ border-color: #ffa500;
+ position: absolute;
+ z-index: 1;
+}
+
+#client_chat {
+ font-size: 1em;
+ display: none;
+ width: 98.4375%;
+ width: calc(100% - 0.275em);
+ margin: auto;
+ height: 31.25%;
+ border-style: double;
+ border-color: #ffa500;
+ background-color: black;
+ top: 66.5%;
+ position: absolute;
+ word-break: keep-all;
+ overflow-wrap: break-word;
+ text-align: left;
+ overflow: hidden;
+ scroll-behavior: smooth;
+}
+
+#client_chat p {
+ padding: 1% 3.13%;
+ margin: 1px;
+ line-height: 97%;
+ letter-spacing: 0.05em;
+ word-spacing: 0.3em;
+}
+
+#client_chatwaiting {
+ display: block;
+ right: -6px;
+ bottom: 0.2em;
+ width: 1em;
+ position: absolute;
+ animation: idling 0.4s linear infinite;
+} \ No newline at end of file