sectionを水平線で区切る
from /yuiseki/settings#5fe94ba7d7d3c30000811b09
presentation modeで区切りとなる部分に水平線を引くUserCSS
Firefoxで使えるように、borderをborder-topに変えてある
code:style.css
.app:not(.presentation) .line.section-title:not(.line-title) {
position: relative;
}
.app:not(.presentation) .line.section-title:not(.line-title) .text {
padding-top: 1em;
}
.app:not(.presentation) .line.section-title:not(.line-title):before {
content: "";
display: block;
width: 111%;
position: absolute;
left: -49px;
border-top: 1px lightgray solid;
}
UserCSS.icon