Web白描

Webデザインの勉強 - 演習

Recipe Diary 2

Recipe Diary 2

記述例

index.html

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>【コーディング練習】Recipe Diary 2</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="img/favicon.ico">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
  
<!-- ▼ main -->
<main class="main">

  <div class="container">

    <div class="image">
      <img src="img/recipe.webp" alt="">
    </div><!-- /.image -->

    <div class="recipe">
      <h2>ひよこ豆とアボガドのタコス</h2>
      <p>たっぷりのひよこ豆とレンズ豆にアボガドとトマトを添えて、少しライムを絞ったらおいしいタコスのできあがりです。</p>

      <h3>材料(2人分)</h3>
      <dl>
        <dt>ひよこ豆</dt>
        <dd>約400g</dd>
        <dt>レンズ豆</dt>
        <dd>約100g</dd>
        <dt>アボカド</dt>
        <dd>1個</dd>
        <dt>トルティーヤ</dt>
        <dd>8枚</dd>
        <dt>ライムの皮と果汁</dt>
        <dd>1個分</dd>
        <dt>チェリートマト</dt>
        <dd>適量</dd>
      </dl>

      <h3>作り方</h3>
      <ol>
        <li>バーベキューグリルを温めておきます。</li>
        <li>ボウルにマリネ液の材料をすべてボウルに入れて混ぜます。</li>
        <li>漬け込んだひよこ豆の水気を切り、12〜15分間焼きます。</li>
        <li>ライムソースを作ります。</li>
        <li>ひよこ豆、アボカドなどのお好みのトッピングをトルティーヤに乗せ、ライムソースをかけて召し上がってください。</li>
      </ol>
    </div><!-- /.recipe -->
    
  </div><!-- /.container -->

  <div class="btn">
    <a href="#">レシピ一覧を見る</a>
  </div><!-- /.btn -->

</main>
<!-- ▲ main -->

<!-- ▼ footer -->
<footer class="footer">

  <ul class="sns">
    <li><a href="#">Instagram</a></li>
    <li><a href="#">Twitter</a></li>
    <li><a href="#">Facebook</a></li>
  </ul>
  <p>&copy; 2025 Recipe Diary</p>

</footer>
<!-- ▲ footer -->

</body>
</html>

style.css

@charset "UTF-8";

/* ---------------------------------------
  reset
--------------------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
html {
  font-size: 100%;
}


/* ---------------------------------------
  body
--------------------------------------- */
body {
  background-color: #fff;
  color: #333;
  font-size: 1.0rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.0;
}


/* ---------------------------------------
  main
--------------------------------------- */
.image{
  height: 500px;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .main > .container {
    display: grid;
    grid-template-columns: 50% 50%;
  }
  .image{
    height: 800px;
    margin-bottom: 0;
  }
    .image > img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
}


/* -------------.recipe ---------------- */
.recipe {
  margin-bottom: 64px;
  padding-top: 44px;
  padding-inline: 10%;
}
  .recipe h2 {
    font-size: 1.45rem;
    margin-bottom: 18px;
  }
  .recipe p {
    font-size: 0.875rem;
    line-height: 1.7;
  }
  .recipe h3 {
    border-bottom: solid 1px #ccc;
    font-size: 1.4rem;
    margin-block: 30px 10px;
    padding-bottom: 10px;
  }
  .recipe dl {
    display: grid;
    grid-template-columns: 50% 50%;
    font-size: 0.875rem;
  }
    .recipe dt {
      border-bottom: dotted 1px #ccc;
      line-height: 3.0;
    }
    .recipe dd {
      border-bottom: dotted 1px #ccc;
      line-height: 3.0;
      text-align: right;
    }
  .recipe ol {
    list-style-position: inside;
    font-size: 0.875rem;
  }
    .recipe li {
      border-bottom: dotted 1px #ccc;
      padding-block: 12px;
      padding-left: 1.0rem;
      text-indent: -1.0rem;
      line-height: 1.4;
    }

@media screen and (min-width: 768px) {
  .recipe h2 {
    margin-bottom: 22px;
    font-size: 1.8rem;
    line-height: 1.3;
  }
}


/* --------------.btn ----------------- */
.btn {
  margin: 40px 0;
  text-align: center;
}
.btn > a {
  display: inline-block;
  width: 80%;
  padding: 20px 60px;
  border: solid 1px #2b2a27;
  font-size: 0.875rem;
  transition: .3s;
}

@media screen and (min-width: 768px) {
  .btn {
    margin: 60px 0 40px;
  }
  .btn > a {
    width: fit-content;
  }
    .btn > a:hover {
      background-color: #ececec;
    }
}


/* ---------------------------------------
  footer
--------------------------------------- */
.footer {
  font-size: 0.7rem;
  padding-bottom: 20px;
  text-align: center;
}
  .sns {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }
    .sns li {
      margin: 0 10px;
    }
      .sns a {
        text-decoration: underline;
      }

@media screen and (min-width: 768px) {
  .footer {
    font-size: 0.875rem;
  }
}