Settings
ページミュート
code:style.css
.page-list-item:is(
) {
display: none !important;
}
配色
code:style.css
:root {
--empty-page-link-color: 230, 138, 138;
--empty-page-link-hover-color: 255, 102, 102;
--page-link-color: 94, 125, 204;
--page-link-hover-color: 66, 120, 255;
}
背景(ないと絶対非公開プロジェクトと間違える)
code:style.css
body {
background: linear-gradient(#eee, #eeb); background-attachment: fixed;
}
隠すやつ
code:style.css
.modal-body .toolbar,
.navbar-menu .expandable-menu {
display: none !important;
}
画像の縁取りと角丸
code:style.css
.line .image, .line .strong-image {
border-radius: 6px;
}
.line.cursor-line .image, .line.cursor-line .strong-image {
border-radius: 0px;
}
code:style.css
.line span:not(.modal-image):not(.pointing-device-map) > a.link:not(.icon):not(.page-link) {
color: rgb(var(--page-link-color));
transition: all 0.06s ease 0s;
}
.line span:not(.modal-image):not(.pointing-device-map) > a.link:not(.icon):not(.page-link):hover {
background: rgba(var(--page-link-hover-color), 0.1) !important;
color: rgb(var(--page-link-hover-color)) !important;
}
color: rgb(var(--empty-page-link-color));
transition: all 0.06s ease 0s;
}
background: rgba(var(--empty-page-link-hover-color), 0.1) !important;
color: rgba(var(--empty-page-link-hover-color)) !important;
}
code:style.css
.line:not(.cursor-line) .deco-\- {
opacity: 0.5;
}
code:style.css
.page-list-item.pin + .page-list-item:not(.pin) {
clear: both;
}
code:style.css
.deco-\(.deco-\) img.icon {
border-radius: 50%;
}
144udy.icon
code:style.css
.line .indent-mark .dot {
top: 12px;
width: 6px;
height: 4px;
}
code:style.css
.indent-mark {
height: 100% !important;
}
.indent-mark .pad {
height: 100% !important;
overflow: unset !important;
}
span:not(.table-block) .indent-mark .char-index:nth-child(n+2) .pad {
border-left: 2px solid rgba(0,0,0,0.07);
}
code:style.css
pointer-events: none;
}
code:style.css
body{padding-right: unset !important}