Settings
code:style.css
/* #で始まるタグをラベル風にする */
atype="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);
}
atype="hashTag":hover{
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
.unread {
border-color: #000 !important;
}
.unread {
width: 0px !important;
border-right-width: 2px !important;
border-left-width: 10px !important; テロメアの太さ最大値
border-right-color: #000 !important;
border-left-color: #8f9899 !important;
}
.unread:hover {
width: auto !important;
border-right: 0 !important;
}
codeblockのフォントを小さくする
code:style.css
.line span.code-block {
line-height: 1.2em;
font-size: 88%;
}
codeblockの先頭行の色をおとなしくする
code:style.css
.line span.code-block .code-block-start {
background-color: #eee;
}
.line span.code-block .code-block-start a {
color: #555;
}