あなたのページをカバーする。
カバーは、シンプルで美しいホームページを構築するための1ページのテンプレート。テキストをダウンロードして編集し、独自のフルスクリーン背景写真を追加して独自の写真にする。
CSSの設定
/*
* 全体の設定
*/
/* カスタムデフォルトボタン */
.btn-light,
.btn-light:hover,
.btn-light:focus {
color: #333;
text-shadow: none; /* `body`からの継承を防ぐ */
}
/*
* ベース構造
*/
body {
text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}
.cover-container {
max-width: 42em;
}
/*
* ヘッダ
*/
.nav-masthead .nav-link {
color: rgba(255, 255, 255, .5);
border-bottom: .25rem solid transparent;
}
.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
border-bottom-color: rgba(255, 255, 255, .25);
}
.nav-masthead .nav-link + .nav-link {
margin-left: 1rem;
}
.nav-masthead .active {
color: #fff;
border-bottom-color: #fff;
}
※これを cover.css
として保存する。
HTMLの設定
<!doctype html>
<html lang="ja" class="h-100">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>カバー</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH">
//CSSの設定など
<!-- CSSの設定ファイル -->
<link rel="stylesheet" href="cover.css">
</head>
<body class="text-center text-bg-dark d-flex h-100">
<div class="cover-container d-flex w-100 p-3 mx-auto flex-column">
<header class="mb-auto">
<div>
<h3 class="mb-0 float-md-start">カバー</h3>
<nav class="nav nav-masthead justify-content-center float-md-end">
<a class="nav-link fw-bold py-1 px-0 active" aria-current="page" href="#">ホーム</a>
<a class="nav-link fw-bold py-1 px-0" href="#">特徴</a>
<a class="nav-link fw-bold py-1 px-0" href="#">要望</a>
</nav>
</div>
</header>
<main class="px-3">
<h1>あなたのページをカバーする。</h1>
<p class="lead">カバーは、シンプルで美しいホームページを構築するための1ページのテンプレート。テキストをダウンロードして編集し、独自のフルスクリーン背景写真を追加して独自の写真にする。</p>
<p class="lead">
<a href="#" class="btn btn-light fw-bold border-white bg-white">もっと詳しく知る</a>
</p>
</main>
<footer class="mt-auto text-white-50">
<p>Cover template for <a href="https://getbootstrap.com/" class="text-white">Bootstrap</a>, by <a href="https://twitter.com/mdo" class="text-white">@mdo</a>.</p>
</footer>
</div><!-- /.cover-container -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
//JavaScriptプラグインの設定など
</body>
</html>