Minimal Green

はてなブログテーマ『Minimal Green』のデモブログ。はてなブログカスタマイズや、HTML、CSSなどについて書いています。

はてなブログ「コメントを書く」ボタンのカスタマイズ

はてなブログの「コメントを書く」ボタンってデフォルトだとシンプルで少し小さめですよね。場合によってはどこにあるか気づきにくいことも。
コメントボタンの文字を大きくしたり、デザインを変えるなら.leave-comment-titleのcssで指定します。

このブログでのカスタマイズ一例です。(デザインテーマには記述していません)

[:contents]
f:id:syofuso:20160808190312j:plain

 

.leave-comment-title {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding: 10px;
  margin-bottom: 0;
  line-height: 20px;
  color: #454545;
  background-color: #ffffff;
  text-align: center;
  vertical-align: middle;
  border-radius: 4px;
  background-clip: padding-box;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #454545;
  text-decoration: none !important;
}
.leave-comment-title::before {
  font-family: "blogicon";
  content: "\f01d";
  padding-right: 5px;
}
.leave-comment-title:hover {
  background-color: #f5f5f5;
  text-decoration: none !important;
}