Well-Being Life LOG

今より幸せな人生をあなたの手に…

#はてなブログ 備忘録

カスタマイズで使用したコードなどを備忘録代わりに紹介していきます。
詳細な説明は省略していますので、それぞれの参照元サイトにてご確認ください。
使用にあたっては自己責任にてお願いいたします。


使用デザインテーマ

Silence
レスポンシブに対応したシンプルなデザインテーマ
シンプルが故にカスタマイズの自由度が高いと考えてこのテーマに決定

blog.hatena.ne.jp

 設定→詳細設定

FontAwesomeデータ読み込み【HTML】

特殊なアイコンデータなどを表示させるための準備
<head>要素にメタデータを追加」欄にコピペ

  1. <!--FontAwesome読み込み-->
  2. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
jQueryデータ読み込み【HTML】

アコーディオンメニューなど動きを持たせるための準備
<head>要素にメタデータを追加」欄にコピペ

  1. <!--jQueryデータ読み込み-->
  2. <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

 デザイン→  →サイドバー

プロフィール欄を既存のものからカスタマイズ【HTML】

①既存のプロフィールを削除
 HTMLを選択し、カスタマイズ用HTMLをコピペ

こちらのサイトを活用させていただきました!
*「プロフィールデザイン3」+フォローボタン追加

www.fuji-blo.com

リンク欄を既存のものからカスタマイズ【HTML】

リンクボタンを追加するためにHTMLで作成
①既存のリンクを削除
 HTMLを選択し、カスタマイズ用HTMLをコピペ

例:LINE友だち追加ボタン設置

  1. <p>
  2. <strong><font color=”#00B900”>\LINE公式アカウント登録/</font></strong><br>
  3. <a href="リンク貼り付け" target="_blank"><img src="https://scdn.line-apps.com/n/line_add_friends/btn/ja.png" alt="友だち追加" width="120" border="0"></a>
  4. </p>

※[リンク貼り付け]にLINE公式アカウント友だち追加のリンク先URLを入力

デザイン→  → デザインCSS

記事途中のキーワード下線を消す【CSS

 /* キーワード下線を消す */
a.keyword {
    border: 0 !important;
    text-decoration: none !important;
    pointer-events: none !important;
    cursor: default;
    color: #5A5A5A;
}

記事下の名前(ID)を消す【CSS

/*記事下 名前のみ 削除*/
span.author.vcard {
display: none;
}

ページ内リンクのスクロールをスムーズにする【CSS

/* スムーズスクロール*/
html {
    scroll-behavior: smooth;
}

記事一覧選択時の動作追加【CSS

/* 記事一覧をふわっとさせる*/
.page-archive .archive-entry {
    transition: .3s; /*変化するまでの時間*/
}
.page-archive .archive-entry:hover {
    transform: translateY(-4px); /*上に4px移動*/
    box-shadow: 0 6px 10px rgba(0,0,0,.2); /*影の距離 ぼかし幅 色*/
}

タグ表示のスマート化【CSS

/* 記事内タグのアイコン変更*/
.entry-tag .entry-tag-icon {
    display: none;
}
.entry-tag-link::before {
    content: "\f04a";
    font-family: 'blogicon';
}

/* 記事一覧画面からタグ消去*/
.archive-entry-tags-wrapper {
    display: none;
}

上に戻るボタンを追加【CSS

/*上に戻るボタン*/
#page-top {
display:none;
position:fixed;
right:10px;
bottom:20px;
margin: 0;
padding: 0;
text-align:center;
}
#move-page-top{
color:rgba(128, 128, 128, 0.3);
text-decoration:none;
display:block;
cursor:pointer;
}
#move-page-top:hover{
color:rgba(128,128,128, 1);
}
@media only screen and (min-width: 400px){
#page-top{
right:50%;
margin-right: -350px;
}
}

目次をルーズリーフ風にする【CSS

こちらのサイトを活用させていただきました!
*「ルーズリーフ風の目次」+リストマーカーなし

www.fuji-blo.com

/* 目次をルーズリーフに*/
.entry-content .table-of-contents {
    display: inline-block;
    padding: 0 1em 1em;
    background: #ffffff14;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 8px dotted #e1e1e2;
    box-shadow: 0px 0px 0 7px #ffffff, 1px 0px 0 7px #959595d4, 2px 0px 0 7px #fff, 3px 0px 0 7px #898989de,
                4px 0px 0 7px #fff, 5px 0px 0 7px #858585de, 4px 0px 10px 9px #b8b8b896;
}
.entry-content .table-of-contents::before {
    content: "CONTENTS";
    display: block;
    position: static;
    margin: .3em 0 .4em;
    padding: 0;
    border-bottom: 2px solid #ddd;
    font-size: 1rem;
    font-weight: bold;
    text-align: start;
}
.entry-content .table-of-contents li {
    list-style-type: none;
    margin: 0 0 0 1em;
    font-size: 1.1em;
    font-weight: bold;
}
.entry-content .table-of-contents li ul {
    margin: 0 0 1em .5em;
    padding: 0;
}
.entry-content .table-of-contents li ul li {
    list-style-type: none;
    color: #8d8d8d;
    font-size: .9em;
    font-weight: normal;
}
.entry-content .table-of-contents a {
    color: #5a5a5a;
    text-decoration: none;
    position: relative;
    display: block;
    line-height: 2em;
    background-image: linear-gradient(90deg, rgba(237, 119, 128, 0) 0%, rgba(237, 119, 128, 0) 50%, #fff 0%, #fff 100%), linear-gradient(180deg, rgba(100, 100, 100, 0) 0%, rgba(100, 100, 100, 0) 95%, #666 100%);
    background-size: 8px 100%,100% 2em;
}

 記事内

吹き出しをつける(会話風)
タカ
こんな感じで表現することができます!
こちらのサイトを参照しました。
いろんなテクニックが紹介されていて、とても重宝します!
 

www.fuji-blo.com

「定型文」に保存しておくといいんですよね!
 
ひつじ

吹き出し左側

  1. <div style="width: 100%;
  2. height: auto;
  3. margin-bottom: 20px;
  4. display: table;">
  5. <div style=" text-align: center;
  6. display: table-cell;
  7. width: 80px;
  8. vertical-align: middle;">
  9. <span><img src="画像のURL" style=" border-radius: 50%;
  10. border: 1px solid #ccc;
  11. margin-bottom: 5px;"></span>
  12. <div style=" color: #616161;
  13. font-size: 70%;
  14. line-height: 1.5;
  15. max-width: 80px;">画像下の名前</div></div>
  16. <div style="display: table-cell;
  17. margin: 0;
  18. vertical-align: middle;
  19. text-align: left;"><div style="font-size: 15px;
  20. line-height: 26px; display: inline-block;
  21. padding: 15px 20px;
  22. margin-left: 20px;
  23. border-radius: 7px;
  24. position: relative;
  25. background-color: #f5f5f5;"><!--吹き出し内背景色-->会話<span style=" position: absolute;
  26. top: 50%;
  27. left: -10px;
  28. margin-top: -10px;
  29. display: block;
  30. width: 0px;
  31. height: 0px;
  32. border-style: solid;
  33. border-width: 10px 10px 10px 0;
  34. border-color: transparent #f5f5f5 transparent transparent;"><!--吹き出し内背景色-->&nbsp;</span></div></div>
  35. </div>
  36. </div>
  37. <p></p>

吹き出し右側

  1. <div style="width: 100%;
  2. height: auto;
  3. margin-bottom: 20px;
  4. display: table;">
  5. <div style="display: table-cell;
  6. margin: 0;
  7. vertical-align: middle;
  8. text-align: right;">
  9. <div style="font-size: 15px;
  10. line-height: 26px;
  11.  display: inline-block;
  12. padding: 15px 20px;
  13. margin-right: 20px;
  14. border-width: 1px;
  15. border-style: solid;
  16. border-color: transparent;
  17. border-radius: 7px;
  18. position: relative;
  19. text-align: left;
  20. background-color: #fafad2;"><!--吹き出し内背景色-->
  21. 会話<span style=" position: absolute;
  22. top: 50%;
  23. right: -10px;
  24. margin-top: -10px;
  25. display: block;
  26. width: 0;
  27. height: 0;
  28. border-style: solid;
  29. border-width: 10px 0 10px 10px;
  30. border-color: transparent transparent transparent #fafad2;"><!--吹き出し内背景色-->&nbsp;</span></div>
  31. </div>
  32. <div style=" text-align: center;
  33. display: table-cell;
  34. width: 80px;
  35. vertical-align: middle;">
  36. <span><img src="画像のURL" style="border-radius: 50%;
  37. border: 1px solid #ccc;
  38. margin-bottom: 5px;"></span>
  39. <!--ここから--><div style="color: #616161;
  40. font-size: 70%;
  41. max-width: 100%;
  42. height: auto;
  43. vertical-align: middle;
  44. line-height: 1.5;
  45. max-width: 80px;">画像下の名前</div><!--ここまで--></div>
  46. </div>
  47. <p></p>
囲み枠をつける(テープ風タイトル)
タイトル


こんな感じで表現することができます!
こちらのサイトを参照しました。
いろんなテクニックが紹介されていて、とても重宝します!

www.fuji-blo.com

  1. <div style=" position: relative; padding: 1em 1em .5em; margin: 2em 0; border: solid 3px #f9f375; border-radius: 8px; background: #ffffff;">
  2. <span style="position: absolute; display: inline-block; top: -16px; left: 13px; padding: 0 9px; height: 25px; line-height: 25px; font-size: 17px; background: repeating-linear-gradient(-45deg, #fff, #fff 3px,#f9f375 3px, #f9f375 7px); color: #555555; font-weight: bold; border-right: dotted 2px #f9f375; border-left: dotted 2px #f9f375; transform: rotate(-2deg);"> タイトル</span>
  3.  <p style=" margin: 0; padding: 0;">内容</p>
  4. </div><p></p>