settings
ページ内の画像を小さくする
code:style.css
span.deco strong.level-1 span.modal-image a img.image{
height: 5em;
/*display:none;*/
}
水平線のリンクをカット
code:style.css
pointer-events: none;
}
navbarを上部に固定
code:style.css
body:not(.presentation) {
padding-top: 90px;
padding-right: 0 !important
}
.navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 990;
overflow: unset;
}
.dropdown.open .dropdown-menu {
position: absolute;
max-height: calc(100vh - 100px);
overflow-y: auto
}
.page-menu { top: 64px }
.page-menu .dropdown.open .dropdown-menu { position: absolute; top: 0 }
a.mobile-pagemenu-toggle { display: none !important }
マーカー !
code:style.css
/* 二重括弧による強調をマーカーっぽくする */
.line strong:not(class) { background: linear-gradient(transparent 10%, #ABFF4F 25%, #ABFF4F 70%, transparent 90%) }
履歴を表示 !
code:style.css
margin: 0 3px;
}
font-weight: bold;
pointer-events: none;
cursor: default;
}
navbarのScrapboxアイコンを非表示にする
code:style.css
.navbar .navbar-brand img {
display: none;
}
.icon-arrow-down:before {
color: var(--fg-color);
}