settings
背景の色
code:style.css
body {background-color:#111111;}
箇条書きを■
code:style.css
.line .indent-mark .dot {
border-radius: 0%;
}
ページトップを改行
code:style.css
.page-list-item.pin + .page-list-item:not(.pin) {
grid-column-start: 1;
}
左上差し替え
code:style.css
/* 左上ロゴを透過PNGに差し替え */
.navbar .brand-icon{
width: 40px !important;
height: 40px !important;
background-image: url("https://scrapbox.io/files/698be54c453671c3061f5561.png") !important;
background-size: contain !important;
background-repeat: no-repeat !important;
background-position: center !important;
display: block !important;
}
/* 既存ロゴは完全に非表示 */
.navbar .brand-icon svg,
.navbar .brand-icon img{
display: none !important;
}
タグをラベル風にする
code:style.css
/* #で始まるタグをラベル風にする */
atype="hashTag"{
display: inline-block;
padding: 2px 8px;
margin: 0 8px 10px 0;
background: #222222;
color: 'white';
font-size: 0.8em;
border: 1px solid #333333;
border-radius: 3px;
transition: .3s;
-webkit-transform: scale(1);
transform: scale(1);
}
atype="hashTag":hover{
-webkit-transform: scale(1.1);
transform: scale(1.1);
}