settings
※ここは管理用ページなのでコンテンツはありません。
/icons/hr.icon
画像のサイズ変更
code:style.css
.level-1 img { width: 16.7%; max-height: none; }
.level-2 img { width: 33.3%; max-height: none; }
.level-3 img { width: 50%; max-height: none; }
.level-4 img { width: 66.7%; max-height: none; }
.level-5 img { width: 83.3%; max-height: none; }
.level-6 img { width: 100%; max-height: none; }
https://bit.ly/2Fi24Qo
トップページのページ一覧の横幅
//code:style.css
div.page-list {
/*max-width: 1000px;*/
margin-left: auto;
margin-right: auto
}
トップページにおける各ページのサイズ(Card形式, 最小値, PC)
code:style.css
htmldata-os="windows" .page-list ul.grid{grid-template-columns:repeat(auto-fill, minmax(200px, 1fr))}
トップページにおける各ページのサイズ(Card形式, 最小値, スマートフォン)
code:styles.css
htmldata-os="android" .page-list ul.grid{grid-template-columns:repeat(auto-fill, minmax(147px, 1fr))} /*デフォルト:147px*/
トップページにおける各ページのタイトル
code:stle.css
.grid li.page-list-item a .title{font-size:15px}
サイトタイトル
code:style.css
a.project-home span.title{font-size:28px}
画像の外周に枠線を付ける
//code:style.css
.deco-\| img{
border:solid 1px #ccc;
}
/scrapboxlab/画像の外周に影をつけるUserCSS
code記法, cli
//code:style.css
code.code, code.cli{font-size:16px !important;font-family:monospace}
コード記法のフォント
code:style.css
.line code {font-size: 105%;font-family:monospace}
ハッシュタグをボタン風にする
code:style.css
atype="hashTag" {
display: inline-block;
margin: 4px;
font-size: 14px;
height: 32px;
width: auto;
padding-left: 8px;
padding-right: 8px;
padding-top: 2px;
padding-bottom: 2px;
border-radius: 2px;
border-style: none;
color: #0c0c0d !important;
background-color: rgba(12, 12, 13, 0.1);
}
/MISONLN41/settings#5f2bcfbcec4fce000063ae53
トップページ右上にStreamのアイコンを置く
code:style.css
.navbar .navbar-menu>li.stream-btn,
.navbar .navbar-menu>li.stream-btn.hidden-xs
{ display: block !important; }
/customize/Streamにアクセスするボタン
トップページ右上のStreamのアイコンの色
code:style.css
span.kamon,span.kamon-actifity a{color:#ddd !important}
Stream アップデートされてからの経過時間を示す見出し
code:style.css
div.time-range h1{font-size:18px;font-weight:bold;}
Streamにてページ削除などの情報を表示しない
code:style.css
div.project-events{display:none !important}