본문으로 이동

사용자:Hsl0/연구소/숫자야구 live/채팅.css

리버티게임, 모두가 만들어가는 자유로운 게임

참고: 설정을 저장한 후에 바뀐 점을 확인하기 위해서는 브라우저의 캐시를 새로 고쳐야 합니다.

  • 파이어폭스 / 사파리: Shift 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5 또는 Ctrl-R을 입력 (Mac에서는 ⌘-R)
  • 구글 크롬: Ctrl-Shift-R키를 입력 (Mac에서는 ⌘-Shift-R)
  • 엣지: Ctrl 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5를 입력.
.chat-client {
    height: 70vh;
    display: grid;
    grid-template-areas:
        "log header"
        "footer footer";
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
}

.chat-header {
    grid-area: header;
    width: 20em;
    border: 1px solid #a2a9b1;
    border-radius: 2px;
    padding: 0.5em;
}

ul.chat-user-options {
    margin-left: 0.25em;
    list-style: none;
    display: inline;
}
.chat-user-options:not(:empty)::before {
    content: "(";
}
.chat-user-options:not(:empty)::after {
    content: ")";
}

.chat-user-option + .chat-user-option::before {
    content: "|";
    margin: 0 0.2em;
}

ul.chat-log {
    grid-area: log;
    overflow-y: auto;
    list-style-position: inside;
    margin-left: 0.7em;
    word-break: break-all;
    display: flex;
    flex-direction: column-reverse;
}

.chat-message-sender {
    margin-right: 0.25em;
    font-weight: bold;
}
.chat-message-sender::after {
    content: ":";
    font-weight: normal;
}

.chat-message-time {
    color: #808080;
    margin-left: 0.25em;
}
.chat-message-time::before {
    content: "(";
}
.chat-message-time::after {
    content: ")";
}

.chat-field {
    max-width: none;
}

.chat-footer {
    grid-area: footer;
}

.chat-indicator {
    display: block;
    text-align: right;
    margin-bottom: 0.5em;
}

.chat-client.chat-header-hidden {
    grid-template-areas:
        "header"
        "log"
        "footer";
    grid-template-rows: auto 1fr;
}

.chat-client.chat-header-hidden .chat-header {
    border: none;
    width: 100%;
}

.chat-client.chat-header-hidden .chat-header > :not(.chat-indicator) {
    display: none;
}

.chat-header-hidden .chat-indicator {
    margin-right: 1em;
    margin-bottom: 0;
    padding-top: 1px;
    padding-right: 1px;
}

.chat-users-count:not(:empty) {
    margin-left: 0.3em;
}

.chat-users-count:not(:empty)::before {
	content: "(";
}

.chat-users-count:not(:empty)::after {
	content: ")";
}

@media(max-width: 800px) {
    .chat-client {
        grid-template-areas: "header" "log" "footer";
        grid-template-rows: auto 1fr;
    }

    .chat-header {
        width: auto;
    }
	
	@media(min-width: 400px) {
		.chat-users {
			column-count: 2;
		}
	}
}