Skip to content

Commit

Permalink
Topのヒーローページに背景を設定
Browse files Browse the repository at this point in the history
  • Loading branch information
ota-meshi committed Dec 26, 2024
1 parent 6c3bf0b commit 5435f81
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .vitepress/theme/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,19 @@
);
}

/* HOMEだけ背景画像を使用する */
.standards-home .VPHomeHero {
background-size: cover;
background-position: center;
background-image: url(../../public/images/background3.jpg);
background-color: #f0f0f0;
background-blend-mode: overlay;
margin-bottom: 16px;
}
.dark .standards-home .VPHomeHero {
background-color: #1b1b1f;
}

/* ヒーロー画像を透過させる */
.image-src {
opacity: 0.1;
Expand Down
1 change: 1 addition & 0 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ features:
details: エンタープライズ領域では、社員・パートナーの方々を合わせて、数百人が同時に開発することも珍しくありません。 ちょっとした悩み、失敗も、人数が集まれば大変なコスト・リスクになります。 誰もが引っかかる落とし穴、悩みの種をあらかじめ排除します。
- title: Performance
details: 時に読みやすいソースコードはパフォーマンス劣化を招くことがあります。 しかし、常にパフォーマンスを優先したソースコードは人間の読めないソースコードになりがちです。 今、書こうとしているソースコードが、どの程度のパフォーマンスになるのか、指標を示すことで、ソフトウェア開発プロジェクトごとに最適なソースコードを選択することができます。
pageClass: standards-home
---

[![GitHub last commit](https://img.shields.io/github/last-commit/future-architect/coding-standards.svg)](https://github.com/future-architect/coding-standards)
Expand Down

0 comments on commit 5435f81

Please sign in to comment.