【ソースコード】入門編:ブランドサイト(ジュエリー)/1カラム
目次
※コーディングの解説はCSSのコメントを参照
ディレクトリ構成
brand
├─img
│ ├─favicon.ico
│ ├─logo.svg
│ ├─mainvisual.jpg
│ ├─concept.jpg
│ └─work.jpg
│
├─css
│ └─style.css
│
└─index.html
HTML(index.html)
別タブで開く
index.html
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>Wooden Jewelry</title>
<meta name="description" content="テキストテキストテキストテキストテキストテキストテキストテキスト">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="img/favicon.ico">
<link rel="stylesheet" href="https://unpkg.com/ress/dist/ress.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="mainvisual">
<img src="img/mainvisual.jpg" alt="">
</div>
<header id="header">
<h1 class="site-title">
<a href="index.html"><img src="img/logo.svg" alt="Wooden Jewelry"></a>
</h1>
<nav>
<ul>
<li><a href="#concept">Concept</a></li>
<li><a href="#work">Work</a></li>
<li><a href="mailto:xxxxx@xxx.xxx?subject=お問い合わせ">Contact</a></li>
</ul>
</nav>
</header>
<div class="container">
<main>
<section id="concept" class="content">
<div class="img">
<img src="img/concept.jpg" alt="">
</div>
<div class="text">
<h2 class="section-title">私たちの考えるジュエリーとは</h2>
<span class="section-title-en">Concept</span>
<p>テキストテキストテキストテキストテキストテキストテキストテキストテキスト</p>
<p>テキストテキストテキストテキストテキストテキストテキストテキストテキスト</p>
</div>
</section>
<section id="work" class="content">
<div class="text">
<h2 class="section-title">ハンドメイドにこだわる理由</h2>
<span class="section-title-en">Work</span>
<p>テキストテキストテキストテキストテキストテキストテキストテキストテキスト</p>
<p>テキストテキストテキストテキストテキストテキストテキストテキストテキスト</p>
</div>
<div class="img">
<img src="img/work.jpg" alt="">
</div>
</section>
</main>
<footer id="footer">
<div class="logo">
<img src="img/logo.svg" alt="Wooden Jewelry">
</div>
<p>© 2021 Wooden Jewelry</p>
</footer>
</div>
</body>
</html>
CSS(style.css)
別タブで開く
style.css
@charset "UTF-8";
html {
font-size: 100%;
}
body {
color: #2d2d2d;
font-family: 'Crimson Text', serif;
}
img {
max-width: 100%;
vertical-align: bottom;
}
ul {
list-style: none;
}
a {
color: #2d2d2d;
text-decoration: none;
}
/* mainとfooterのコンテンツ幅を設定 */
.container {
max-width: 1000px;
margin: 0 auto;
padding: 0 18px;
}
.site-title {
width: 110px;
line-height: 1px;
margin-right: 50px;
}
.site-title a {
display: block;
}
.section-title {
font-size: 1.5rem;
font-weight: normal;
margin-bottom: 4px;
}
/*
spanタグを使用しているため、「display: inline-block;」を設定することで、
改行されてmargin-bottomが使用できるようになる
※pタグを使用してもよいが、文章ではないため今回はspanタグを選択
*/
.section-title-en {
display: inline-block;
margin-bottom: 25px;
}
/*-------------------------------------------
Mainvisual
-------------------------------------------*/
/*
widthをvwで指定することで、画面幅を基準にした横幅になる
*/
#mainvisual {
width: 90vw;
margin: 4% auto 0 auto;
}
/*-------------------------------------------
Header
-------------------------------------------*/
#header {
width: 90vw;
display: flex;
align-items: center;
padding: 32px 0;
margin: 0 auto 30px auto;
}
#header ul {
display: flex;
}
#header li {
font-size: 0.875rem;
margin-right: 30px;
}
/*
最後のliタグには margin-right を設定しない
*/
#header li:last-child {
margin-right: 0;
}
/*-------------------------------------------
Concept、Work
-------------------------------------------*/
.content {
display: flex;
align-items: center;
margin-bottom: 60px;
}
.content .img {
width: 50%;
}
.content .text {
width: 50%;
padding: 0 7%;
}
/*-------------------------------------------
Footer
-------------------------------------------*/
#footer {
display: flex;
justify-content: space-between;
font-size: 0.875rem;
padding: 20px 0;
}
#footer .logo {
width: 110px;
}
/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 767px) {
.section-title {
font-size: 1.25rem;
}
/*-------------------------------------------
Mainvisual
-------------------------------------------*/
#mainvisual {
width: 100%;
margin: 0;
}
/*
heightをvhで指定することで、画面の高さを基準にした高さになる
*/
#mainvisual img {
width: 100%;
height: 50vh;
object-fit: cover;
}
/*-------------------------------------------
Header
-------------------------------------------*/
#header {
width: 100%;
padding: 20px 18px;
}
/*-------------------------------------------
Concept、Work
-------------------------------------------*/
/*
Workはそのまま画像とテキストを縦に並べると、
テキスト→画像の順番になるため、「flex-direction: column-reverse;」
で逆順にする
*/
#work {
flex-direction: column-reverse;
}
.content {
flex-direction: column;
}
.content .img {
width: 100%;
margin-bottom: 10px;
}
.content .text {
width: 100%;
padding: 0;
}
}