generated at
settings
bodyの設定を変更する
style.css
body, .editor{ color: #373942 !important; /* 全体のフォントカラーを変える */ font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif !important; /* フォントを游ゴシック優先にする */ }
[** ]<-これを見出し風にする
style.css
/* [** ]<ーこれを見出し風にする */ .line strong.level-2{ display: block; position: relative; font-size: 200%; line-height: 160%; text-align: center; margin: 12px auto 18px; font-weight: 100; } .line strong.level-2:after{ position: absolute; content: ''; border-bottom: 3px solid #ffeb36; width: 100px; top: 0; bottom: -0.5em; left: 0; right: 0; margin: 0 auto; }
[* ]<-これに蛍光のラインを足す
style.css
/* [* ]<ーこれに蛍光のラインを足す */ .level-1{ background: linear-gradient(transparent 60%, #ffeb36 60%); }

style.css
/* [*** ]<-これを小見出しに */ .line strong.level-3{ display: block; position: relative; padding-left: 16px; } .line strong.level-3:before{ content: ''; position: absolute; width: 5px; height: 100%; top: 0; left: 0; background: #ffeb36; }
カードの一覧を小さくする
こちらのcssは/daiizさんのsettingを参考にさせていただきました。
style.css
/* カード一覧を小さく */ .two-two { width: 150px !important; height: 150px !important; } .page-list .grid li, .related-page-list .grid li.page-list-item, .related-page-list .grid li.relation-label { width: 150px !important; height: 150px !important; } .grid li.two-two.page-list-item a .title { margin-top: 0; !important; font-size: 13px; !important; width: 100%; height: 42px; background: none !important; line-height: 18px; } .grid li.two-two.page-list-item a .icon{ padding-top: 50px !important; } .grid li.two-two.page-list-item a .header{ height: 50px !important; }
ピンマークを小さくする
style.css
.grid li.page-list-item a .pin{ width: 14px; height: 14px; }

行間を調整する
style.css
/* 行間調整 */ .line .section-0{ line-height: 1.2em !important; }
imgをセンタリングする
style.css
/* imgをセンタリング */ .line img.image{ display: block; margin: 0 auto; }
#で始まるタグをラベル風にする
style.css
/* #で始まるタグをラベル風にする */ a[type="hashTag"]{ display: inline-block; padding: 2px 8px; margin: 0 8px 10px 0; background: #fff; color: #f27e48; font-size: 0.8em; border: 1px solid #f27e48; border-radius: 3px; transition: .3s; -webkit-transform: scale(1); transform: scale(1); } a[type="hashTag"]:hover{ -webkit-transform: scale(1.1); transform: scale(1.1); }