settings
code:style.css
.level-1 img {
display: none !important;
}
code:style.css
opacity: 0.2 !important;
}
code:style.css
/* 検索窓サジェストを大きくする */
.navbar-form .dropdown.open .dropdown-menu {
min-width: 100%;
max-height: calc(100vh - 130px) !important;
overflow-y: auto;
}
https://gyazo.com/ce7139eae811825778b8a72b9b49cbd5
一覧ページの設定
code:style.css
/*上の余白をなくす*/
.grid li.page-list-item a .header {
border: 0;
}
/*枠線の設定*/
.grid li.page-list-item a {
border-radius: 8px;
border: solid 1px;
opacity: 0.8;
/*影をなくす*/
box-shadow: none;
}
.grid li.page-list-item a:hover {
box-shadow: none;
}
.relation-label {
opacity: 0.9;
}
ページの設定
code: style.css
.page {
background-color: rgba(255,255,255,1);
border: solid 1px;
border-radius: 6px;
box-shadow: none;
}
緑小文字
code:style.css
.deco-\% { color: green; font-size: smaller; padding: 0 .2em }
インラインコード
code: style.css
code.code span {
color: rgb(235,40,70);
}
取り消しのとき文字を少し透明に
code:style.css
.deco-\- {
opacity: 0.5;
}
ピンをなくす
code:style.css
.grid li.page-list-item a .pin {
background-color: transparent;
background-image: none;
}
テロメアを消す
code: style.css
.line .telomere .telomere-border {
display: none;
}
.unread {
display: none;
}
線からリンク先に飛ぶのを防ぐ。
code:style.css
pointer-events: none;
vertical-align: -20%;
}
Streamボタンを表示させる
code:style.css
.navbar .navbar-menu>li.stream-btn,
.navbar .navbar-menu>li.stream-btn.hidden-xs {
display: block !important;
margin-right: 10px;
}