チャット欄:オリジナルソース
原文
初期値
code:css
:root {
/** 表示行数の上限 */
--line-clamp: 3 !important;
/** ダイス結果の上下揃えの設定 */
--is-top: auto !important;/* 上揃えの場合⇒0、下揃えの場合⇒auto */
--is-bottom: 0 !important;/* 上揃えの場合⇒auto、下揃えの場合⇒0 */
/** ダイス結果背景 */
--width: 500px !important; /** 結果の横幅 */
--background-color: rgba(0, 0, 0, 0.6) !important; /** 背景色 */
--background-padding: 8px 18px 8px 8px !important; /** 外枠と文字の隙間 */
--border-color: rgba(255, 255, 255, 1) !important; /** 枠線の色 */
--border-slice: 0px !important; /** 枠線画像の太さ */
--border-width: 0px !important; /** 枠線の幅 */
--border-radius: 10px !important; /** 角の丸み */
--border-shadow: 5px 5px 10px black !important; /** 読み方)X軸 Y軸 影の幅 色 */
--result-space: 10px !important; /** ダイス結果同士の隙間 */
/** アイコン画像の設定 */
--icon-radius: 0% !important; /** 画像の丸み:0%⇒四角、50%⇒正円 */
--icon-background-color: transparent !important; /** アイコン背景色:transparentで透明 */
--icon-width: 70px !important; /** 画像の横幅 */
--icon-height: 70px !important; /** 画像の高さ */
--icon-margin-top: 0px !important; /** アイコン上のスペース */
--icon-margin-bottom: 0px !important; /** アイコン下のスペース */
--icon-margin-left: 0px !important; /** アイコン左のスペース */
--icon-margin-right: 10px !important; /** アイコン右のスペース */
/** ダイス結果の文字部分(デフォルト) */
--font-size-result: 1.5rem !important;
--font-color-result: rgba(255, 255, 255, 1) !important;
--font-shadow-result: 2px 2px 3px black !important; /** 読み方)X軸 Y軸 影の幅 色 */
/** 成功時の青文字部分 */
--font-size-success: 1.1rem !important;
--font-color-success: rgba(134, 202, 255, 1) !important;
--font-shadow-success: 2px 2px 3px black !important; /** 読み方)X軸 Y軸 影の幅 色 */
/** 失敗時の赤文字部分 */
--font-size-fail: 1.1rem !important;
--font-color-fail: rgba(255, 161, 161, 1) !important;
--font-shadow-fail: 2px 2px 3px black !important; /** 読み方)X軸 Y軸 影の幅 色 */
/** ユーザ名の部分 */
--font-size-user-name: 1.1rem !important;
--font-color-user-name: rgba(255, 255, 255, 1) !important;
--font-shadow-user-name: 2px 2px 3px black !important; /** 読み方)X軸 Y軸 影の幅 色 */
/** ダイスを振った時間を表示するか */
--disp-dice-time: transparent !important; /** none⇒表示しない、transparent⇒表示する */
--font-size-dice-time: 1rem !important;
--font-color-dice-time: rgba(255, 255, 255, 0.6) !important;
--font-shadow-dice-time: 2px 2px 3px black !important; /** 読み方)X軸 Y軸 影の幅 色 */
}