あなたのページをカバーする。
カバーは、シンプルで美しいホームページを構築するための1ページのテンプレート。テキストをダウンロードして編集し、独自のフルスクリーン背景写真を追加して独自の写真にする。
CSSの設定
/*
* 全体の設定
*/
/* リンク */
a,
a:focus,
a:hover {
color: #fff;
}
/* カスタムデフォルトボタン */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
color: #333;
text-shadow: none; /* `body`からの継承を防ぐ */
background-color: #fff;
border: .05rem solid #fff;
}
/*
* ベース構造
*/
html,
body {
height: 100%;
background-color: #333;
}
body {
display: -ms-flexbox;
display: flex;
color: #fff;
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;
}
/*
* ヘッダ
*/
.masthead {
margin-bottom: 2rem;
}
.masthead-brand {
margin-bottom: 0;
}
.nav-masthead .nav-link {
padding: .25rem 0;
font-weight: 700;
color: rgba(255, 255, 255, .5);
background-color: transparent;
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;
}
@media (min-width: 48em) {
.masthead-brand {
float: left;
}
.nav-masthead {
float: right;
}
}
/*
* カバー
*/
.cover {
padding: 0 1.5rem;
}
.cover .btn-lg {
padding: .75rem 1.25rem;
font-weight: 700;
}
/*
* フッタ
*/
.mastfoot {
color: rgba(255, 255, 255, .5);
}
HTMLの設定
<!DOCTYPE html>
<html lang="ja">
<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@4.6.2/dist/css/bootstrap.min.css" integrity="sha384-xOolHFLEh07PJGoPkLv1IbcEPTNtaed2xpHsD9ESMhqIYd0nLMwNLD69Npy4HI+N" crossorigin="anonymous">
//cssファイルの設定など
</head>
<body class="text-center">
<div class="cover-container d-flex w-100 p-3 mx-auto flex-column">
<header class="masthead mb-auto">
<div class="inner">
<h3 class="masthead-brand">カバー</h3>
<nav class="nav nav-masthead justify-content-center">
<a class="nav-link active" href="#">ホーム</a>
<a class="nav-link" href="#">特徴</a>
<a class="nav-link" href="#">要望</a>
</nav>
</div>
</header>
<main role="main" class="inner cover">
<h1 class="cover-heading">あなたのページをカバーする。</h1>
<p class="lead">カバーは、シンプルで美しいホームページを構築するための1ページのテンプレート。テキストをダウンロードして編集し、独自のフルスクリーン背景写真を追加して独自の写真にする。</p>
<p class="lead">
<a href="#" class="btn btn-secondary">もっと詳しく知る</a>
</p>
</main>
<footer class="mastfoot mt-auto">
<div class="inner">
<p>Cover template for <a href="https://getbootstrap.com/">Bootstrap</a>, by <a href="https://twitter.com/mdo">@mdo</a>.</p>
</div>
</footer>
</div><!-- /.cover-container -->
<script src="https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.slim.min.js" integrity="sha384-Qg00WFl9r0Xr6rUqNLv1ffTSSKEFFCDCKVyHZ+sVt8KuvG99nWw5RNvbhuKgif9z" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-Fy6S3B9q64WdZWQUiU+q4/2Lc9npb8tCaSX9FK7E8HnRr0Jz8D6OP9dO5Vg3Q9ct" crossorigin="anonymous"></script>
//JavaScriptプラグインの設定など
</body>
</html>