Settings
https://gyazo.com/d1b8abd8f0e70fd276a052acb2776492
(いい画像がない)
code:style.css
/* セル間に線を入れる */
.table-block .cell {
/* 全てのセルの右と下 */
border-right: solid 1px #cccccc;
border-bottom: solid 1px #cccccc;
}
.table-block .cell:first-child {
/* 1列目のセルの左 */
border-left: solid 1px #cccccc;
}
.section-title + .line .table-block .cell {
/* 1行目のセルの上 */
border-top: solid 1px #cccccc;
}
code:style.css
.deco-\!{
color: #c95f6a;
}
/* ***** <-これを小見出しに */
.line strong.level-5{
display: block;
position: relative;
padding-left: 16px;
}
.line strong.level-5:before{
content: '';
position: absolute;
width: 5px;
height: 100%;
top: 0;
left: 0;
background: #ffeb36;
}
code:style.css
.line .indent-mark .dot {
background-color: transparent;
}
.line .indent-mark .dot:before {
border-radius: 0%;/*角丸*/
color:white;
content: '';
width: 8px;
height: 8px;
border-top: solid 3px #6d6d6d;
border-right: solid 3px #6d6d6d;
-ms-transform: rotate(45deg);
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
position: absolute;
margin-top: -0px;
margin-left:-5px;
}
.line .indent-mark .c-0 + .dot {
background-color: transparent;
}
/* このレベルの行頭文字を表示 */
.line .indent-mark .c-0 + .dot:before {
width: 4px;
height: 4px;
margin-top: 0px;
margin-left: 0px;
}