settings
注:書式設定用に作成したページです。Cogmindとは無関係です。
角カッコ" "をそのまま表示する
code:style.css
.line:not(.cursor-line) .deco-\%::before {
content: "["
}
.line:not(.cursor-line) .deco-\%::after {
content: "]"
}
/scrapboxlab/角カッコをそのまま表示したい
画像の表示サイズを[** ]で設定できるようにする
code:style.css
.level-1 img { width: 16.7%; max-height: none; }
.level-2 img { width: 33.3%; max-height: none; }
.level-3 img { width: 50%; max-height: none; }
.level-4 img { width: 66.7%; max-height: none; }
.level-5 img { width: 83.3%; max-height: none; }
.level-6 img { width: 100%; max-height: none; }
/customize/画像の表示サイズを[** ]で設定できるようにする
文字色
code:style.css
.deco-\# {
color: #fff; /* 白文字 */
background-color: #6a6; /* 緑背景 */
}
.deco-\! { /* 重要な部分は!を付ける */
color: #fff;
background-color: #e66; /* 赤背景 */
font-size: 1.2em; /* 重要なので最初から大きな文字にする */
}
code:style.css
.deco-\! {
color: #fff;
background-color: #e66;
}
.deco-\% {
color: #fff;
background-color: #ea2;
}
.deco-\# {
color: #fff;
background-color: #6a6;
}
.deco-\~ {
color: #fff;
background-color: #6ae;
}
/forum-jp/文字色