コガネブログ

平日更新を目標に Unity や C#、Visual Studio、ReSharper などのゲーム開発アレコレを書いていきます

【VSCode】Marp の default theme でセクションヘッダーは中央揃え、タイトルと本文は左上基準にする方法

通常

---
marp: true
---

<!-- _class: lead -->

# タイトル

---

# タイトル

本文1
本文2
本文3

f:id:baba_s:20210310203339p:plain

セクションヘッダーは中央揃え
タイトルと本文は左上基準

---
marp: true
style: |
  section {
    justify-content: normal;
  }
  section.lead {
    justify-content: center;
    text-align: center;
  }
---

<!-- _class: lead -->

# タイトル

---

# タイトル

本文1
本文2
本文3

f:id:baba_s:20210310203345p:plain