リンク色の変更とか
タイトルのtransitionとか
ページャーの色変とか
手付かずの部分の改修がおおおむね終了です
このページを見ていただいている方の中に
どのくらいいるのか
不明ですが・・・
このページのカスタムはこんな感じ♪
/* ナビバーを色変 */
#globalheader-container {
color: #fff;
background: #a22;
}
/* フッターを色変 */
#footer {
color: #fff;
background: #a22;
}
/* タイトルの文字サイズなどを変更 */
#blog-title-content h1#title {font-size:32pt; font-weight:600;}
#blog-title-content h1#title a:hover {
color:#a22;
font-size:120%;
transition-property: font-size;
transition-duration: 1s;
transition-delay: 0.2s;
transition-timing-function: ease;
}
/* リンクの文字色を変更 */
.hatena-module-body a {
color:#a22;
}
/* カテゴリーの改行幅を調整 */
.hatena-module-body ul li {
line-height:10px;
margin:0px;
}
/* サムネイルの幅などを調整 */
.entry-thumb {
position: relative;
content: "";
display: block;
padding: 35px;
}
.entry-thumb:hover {
box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.3);
transform: scale(0.9);
transition: .4s cubic-bezier(0.45, 0, 0.55, 1);
}
/*ページャーを色変*/
.pager {
background:transparent;
border: 0px;
margin-top:50px;
}
.pager a {
background:#052;
color: #fff;
font-weight: 600;
height: 100%
}
.pager a:hover {
background-color: #fff;
color: #a22;
}