boomerchatbox { position: absolute; bottom: 360px; left: 100px; z-index: 100; flex-direction: column; width: 500px; font-family: Poppins; font-size: 13px; textentry { background-color: wheat; opacity: 0; color: white; padding: 15px; background-color: rgba( black, 0.5 ); font-size: 14px; flex-shrink: 0; flex-grow: 0; width: 100%; } .chat_canvas { flex-direction: column; align-items: flex-start; overflow: scroll; max-height: 480px; } &.open { pointer-events: all; textentry { opacity: 1; backdrop-filter: blur( 10px ); cursor: text; } .faded { opacity: 1; } } } boomerchatentry { background-color: rgba( black, 0.7 ); margin-bottom: 5px; border-radius: 50px; color: white; transition: transform 0.1s ease-out, opacity 0.1s ease-out; opacity: 1; max-height: 200px; flex-shrink: 0; flex-grow: 0; padding: 12px; padding-left: 45px; min-height: 47px; max-width: 100%; transform: scale( 1 ); backdrop-filter: blur( 5px ); &:intro { max-height: 0px; padding-top: 0; padding-bottom: 0; margin-bottom: 0; opacity: 0; transform: scale( 0 ); } &.faded { opacity: 0; } image { width: 32px; height: 32px; min-height: 32px; border-radius: 100px; position: absolute; left: 6px; top: 6px; } .name { padding-right: 20px; font-weight: 600; font-size: 14px; color: #c0fb2e; flex-shrink: 0; } .message { color: #ccc; font-size: 14px; flex-grow: 1; } &.noname .name { display: none; } &.noavatar image { display: none; } &.is-lobby { .name { color: #ff80f5; } } }