デザイン変更


見た目に飽きたのと夜間でも見やすいようにダークテーマを基調とした色味にしてみた。他にサンプルを提供してくれてるコードを見つけてきて、見出しと引用をシンプルなデザインにカスタマイズ。

見出しh2 ソースコード

#single-content h2 {
  color: #FFFFFF;
  position: relative;
  background: #373735;
  padding-bottom: 0.7em;
  padding-top: 0.7em;
  padding-left: 1.2em;
  margin: 2.5em 0;
}
#single-content h2:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid #373735;
  width: 0;
  height: 0;
}

小見出しh3 ソースコード

#single-content h3{
  position: relative;
  padding-bottom: .5em;
  border-bottom: 2px solid #ccc;
  margin: 1.5em 0;
}
#single-content h3::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 2;
  content: '';
  width: 20%;
  height: 2px;
  background-color: #373735;
}
引用デザイン ソースコード
#single-content blockquote{
    position: relative;
    padding: 1.1em 1.1em 1.1em 2.8em;
    box-sizing: border-box;
    font-style: normal;
    background: #FCFCFC;
    color: #555;
    margin: 1.0em 0;
    border-radius: 13px;
}
#single-content blockquote:before{
    display: inline-block;
    position: absolute;
    top: 18px;
    left: 15px;
    content: "\f10d";
    font-family: FontAwesome;
    color: #6C6C6C;
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
}