settings
bodyの設定を変更する
code:style.css
body,
.editor{
color: #373942 !important; /* 全体のフォントカラーを変える */ font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif !important; /* フォントを游ゴシック優先にする */
}
[** ]<-これを見出し風にする
code: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: '';
width: 100px;
top: 0;
bottom: -0.5em;
left: 0;
right: 0;
margin: 0 auto;
}
[* ]<-これに蛍光のラインを足す
code:style.css
.level-1{
background: linear-gradient(transparent 60%, #ffeb36 60%); }
code: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;
}
カードの一覧を小さくする
こちらのcssは/daiizさんのsettingを参考にさせていただきました。 code: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;
}
ピンマークを小さくする
code:style.css
.grid li.page-list-item a .pin{
width: 14px;
height: 14px;
}
行間を調整する
code:style.css
/* 行間調整 */
.line .section-0{
line-height: 1.2em !important;
}
imgをセンタリングする
code:style.css
/* imgをセンタリング */
.line img.image{
display: block;
margin: 0 auto;
}
#で始まるタグをラベル風にする
code:style.css
/* #で始まるタグをラベル風にする */
display: inline-block;
padding: 2px 8px;
margin: 0 8px 10px 0;
font-size: 0.8em;
border-radius: 3px;
transition: .3s;
-webkit-transform: scale(1);
transform: scale(1);
}
-webkit-transform: scale(1.1);
transform: scale(1.1);
}