UserCSS
他のScrapboxと共通で使う用。記事自体の見た目を派手に弄るやつは外してる
code:style.css
.cursor > svg > rect {
fill: var(--darkreader-neutral-text, var(--cursor-color, #000)) }
code:style.css
/* 行番号を表示 -- ウィンドウ幅768px以上で適用 */
@media screen and (min-width: 768px) {
.lines { counter-reset: line }
/* タイトルから数えるときは :not(.line-title) を消してね */
.line:not(.line-title) { counter-increment: line }
/* タイトルから数えるときは :not(.line-title) を消してね */
.app:not(.presentation) .line:not(.line-title)::before {
content: counter(line);
position: absolute; display: inline-block; left: -110px; z-index: 10;
min-width: 50px; text-align: right; vertical-align: middle;
/* 行番号のフォントとか色とかの指定はここ */
font-family: monospace; color: grey }
/* カーソル行の行番号を濃く表示する */
.line:not(.line-title)::before { opacity: .5 }
.line.cursor-line:not(.line-title)::before { opacity: 1; font-weight: bolder } }
code:style.css
body .grid li.page-list-item a .title {
max-height: inherit !important;
-webkit-line-clamp: 1000 !important;
}
code:style.css
.container {
max-width: 1980px;
}
.grid li.page-list-item a .description p{
font-size: 10px;
line-height: 1.42857;
}
.grid li.page-list-item a .icon img{
object-fit: contain;
}