settings
[* ] ←これに黄色の下線を足す
[** ]←これに蛍光のラインを足す
[*** ]←これに 黒の下線を足す
settings - ???? - Scrapbox
文字装飾記法 - Scrapbox ヘルプ - Scrapbox
code:style.css
/* * <ーこれに黄色のラインを足す */
.level-1{
background: linear-gradient(transparent 90%, rgb(255, 202, 128) 40%);
}
/* ** <ーこれに蛍光のラインを足す */
.level-2{
background: linear-gradient(transparent 80%, rgb(105, 251, 170) 60%);
}
/* *** <ーこれに黒の下線を足す */
.level-3{
background: linear-gradient(to bottom, transparent 80%, #666);
}
/* 文字色をつける */
.deco-\! {
color: #fff;
background-color: #e66;
}
.deco-\% {
color: #fff;
background-color: #ea2;
}
.deco-\# {
color: #fff;
background-color: #6a6;
}
.deco-\~ {
color: #fff;
background-color: #6ae;
}
←控えめになる
/scrasobox/箇条書きを控えめにする
code:style.css
/* 箇条書きを控えめにする */
.app .line .indent-mark .dot {
height: .2em; width: .4em; border-radius: 25%;
background-color: rgba(173,173,173,.55) }
.app:not(.presentation) .line .indent-mark .dot { top: auto; bottom: 0 }