body { font-family: "Ace Attorney", "MS PGothic", "MS UI Gothic", "MS Sans Serif", "Hiragino Maru Gothic Pro", "Mitra Mono", "Mukti Narrow", "Meera", "Khmer OS", "FreeSans", "Gargi" , sans-serif; } img { image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; -ms-interpolation-mode: nearest-neighbor; } .text_white { color: #fff; } .text_green { color: #0f0; } .text_red { color: #f00; } .text_orange { color: #ffa500; } .text_blue { color: #4596ff; } .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_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; } .client_button { margin: 1px; padding: 2px 15px; cursor: pointer; text-align: center; font-weight: bold; color: white; background-color: #7b2900; border-radius: 3px; border-style: solid; border-width: 1px; border-color: #fff; box-shadow: 1px 1px inset; } #client_defense_hp { text-align: left; } #client_defense_hp>.health-bar { background-color: #169de0; } #client_prosecutor_hp { text-align: right; } #client_prosecutor_hp>.health-bar { background-color: #e01f5f; } .health-box { background-color: #555; height: 20px; width: 50%; margin: 0 auto; border: solid 2px #aaa; border-radius: 5px; box-sizing: border-box; display: block; } .health-bar { width: 100%; height: 100%; border-radius: 3px; bottom: 0; position: relative; display: inline-block; transition: 1s linear; transition-property: width; }