ライン 黒・赤

image0 image1

このテーマの特徴

カスタムテーマの特徴

このカスタムテーマは、近代的でミニマルなデザインを提供し、次の特徴があります。

  • ヘッダー:

    • ヘッダーのサイズは 60pt で、水平方向に全幅に広がっています。
    • ヘッダーは、ページ内容の上部に影を落とすことで、視覚的な奥行きが追加されています。
    • ヘッダーの左右には余白が設けられています。
  • フッター:

    • フッターは画面の下部に固定され、全幅に広がっています。
    • フッターには黒いテキストが記載され、アイテムの間には 10pt の余白があります。
    • フッターは、ページ内容の下部に影を落とすことで、視覚的な奥行きが追加されています。
  • タイトルセクション:

    • タイトルセクションは中央寄せで、フォントサイズは 36pt です。
    • タイトルセクションには、上下に 50pt の余白があります。
    • タイトルセクションには、 вертика方向に中央寄せおよび左右に余白が設けられています。

全体として、このカスタムテーマは読みやすく視覚的に魅力的なプレゼンテーションを提供します。その近代的でミニマルなデザインにより、コンテンツに注目が集まり、明瞭で印象的なスライドショーを作成できます。

このテーマを利用する

CSS

/* @theme custom_theme */
@import default;

section{
  display: flex;
  flex-direction: column;
  font-size: 24pt;
}

header{
  width: 100%;
  height: 60pt;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18pt;
  background-color: #3a4750;
  color: #ffffff;
  box-shadow: 0px 8px 32px #00000029;
}

footer{
  width: 100%;
  position: fixed;
  padding: 12pt;
  background: linear-gradient(to right, #f1faee, #e63946);
  color: #000000;
  bottom: 0pt;
  display: flex;
  justify-content: center;
  gap: 10pt;
  box-shadow: 0px -8px 32px #00000029;
}

section.title{
  background-color: #ffffff;
  color: #000000;
  text-align: center;
  font-size: 36pt;
  padding-top: 50pt;
  padding-bottom: 50pt;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

Marpのサンプル

---
marp: true
theme: custom_theme
header: " "
footer: " "
---
<!--
_class: title
-->

# タイトル

---
<!--
_class: subtitle
-->

## サブタイトル

---
<!--
_class: subtitle
-->

## 別のサブタイトル

---
<!--
_class: section_list
-->

# リスト
- これがリスト
- それもリスト
- さらにリスト

---
<!--
_class: section_code
-->