Skip to content

Instantly share code, notes, and snippets.

@nyanshiba
Created November 6, 2019 15:11
Show Gist options
  • Save nyanshiba/6c2b4591c04054dcf8c00879d5ec6bd5 to your computer and use it in GitHub Desktop.
Save nyanshiba/6c2b4591c04054dcf8c00879d5ec6bd5 to your computer and use it in GitHub Desktop.
/* チャット欄自体を大きく */
.chat-container {
font-family: "Noto Sans JP"!important;
border-radius: none!important;
height: 1000px!important;
width: 1900px!important;
overflow: hidden;
}
.chat-container .messages {
height: 100%!important;
}
/* Discordチャンネル名を非表示 */
.channel-name {
display: none;
}
/* 背景透過 */
.messages {
background: transparent!important;
}
/* メッセージカードのデザイン */
.chat-container .messages .message {
max-height: none!important;
display: block;
background-image: linear-gradient(to right, rgba(204,204,204,0.1), rgba(204,204,204,0.4));
margin: 3em;
padding: 2em 4em;
}
/* 日時を消す */
.chat-container .messages .message .timestamp {
display: none;
}
/* 名前、投稿内容の文字の大きさ */
.chat-container .messages .message .message-text,
.chat-container .messages .message .username {
display: block!important;
font-size: 56px!important;
line-height: 100px!important;
font-weight: 600!important;
}
/* 投稿内容の色 */
.chat-container .messages .message .message-text {
color: #ddd!important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment