[TIL] 220210

Lee Syong·2022년 2ė›” 10ėž
0

TIL

ëŠĐ록 ëģīęļ°
175/204
post-thumbnail

📝 ė˜Ī늘 한 ęēƒ

  1. grid practice

📚 ë°°ėšī ęēƒ

1. SCSS

1) besthorrorscenes

https://besthorrorscenes.com/ íī률 ė―”ë”Đ

(1) grid

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  .grid-item {
    grid-column: 2 / -1;
    display: flex;
    flex-direction: column;
    line-height: 1.5;
    .rating {
      align-self: end;
      margin-top: 40px;
      font-weight: bold;
      color: $color-dark-red;
    }
  }
}

(2) ęģ ė • header

.articles {
  margin-top: 100px; /* main contentė˜ ėœ— ëķ€ëķ„ėī ęģ ė • headerė— 가ëĶŽė§€ ė•Šë„록 */
  background-color: $color-red;
  .articles-header__fixed {
    position: fixed;
    width: 100%;
    height: 20px;
    top: 0;
    padding: 40px;
    border-bottom: 1px solid $color-grey;
    background-color: inherit;
  }
}

(3) gitignore ė ėšĐ ė•ˆë˜ëŠ” ëŽļė œ í•īęē°

dist íī더ëĨž gitignore 파ėžė— ėķ”ę°€í–ˆë‹Ī.
ę·ļ런데 ė ėšĐėī ė•ˆëžė„œ í•īęē° ë°Đëē•ė„ ė°ūė•„ëīĪë‹Ī.

$ git rm -r --cached .
$ git add .
$ git commit -m "ėšė‹œ ė‚­ė œ"

(4) section / article

mainė„ sectionėœžëĄœ ėˆ˜ė •í–ˆë‹Ī.
section ė•ˆė— 또 ë‹ĪëĨļ sectionęģž footerëĨž 만ë“Īė—ˆë‹Ī.

<section class="articles">
  <header class="articles-header__fixed">
    Currently viewing everything sorted by random .
  </header>
  <section class="articles-list"> <!-- main 대ė‹  sectionėœžëĄœ ėˆ˜ė • -->
    <article>
      <div>
        <h2 class="article-title">The Oranges (2007)</h2>
        <span class="article-director">Directed by J.A. Bayona</span>
      </div>
      <img
           src="https://images2.minutemediacdn.com/image/upload/c_crop,h_2450,w_4368,x_0,y_165/v1562080363/shape/mentalfloss/29942-gettyimages-155302141.jpg?itok=45ARGbzy"
           alt="orange"
           />
      <div class="grid-container">
        <div class="grid-item">
          <p>
            <!-- ėĪ‘ëžĩ -->
          </p>
          <span class="rating">My rating: 8/10</span>
        </div>
      </div>
      <div class="comments">
        <span>No Comments</span>
        <span>Leave a Comment</span>
      </div>
    </article>
    <article>
      <!-- 두 ëēˆėĻ° article -->
    </article>
  </section>
  <footer class="articles-footer">
    <span class="logo__youtube">Youtube</span>
    <span class="logo__twitter">Follow @besthorrorscene</span>
  </footer>
</section>
.articles-footer {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  height: 150px;
  background-color: $color-white;
  color: $color-white;

  .logo__youtube {
    background-color: $color-red;
    border-radius: 16px;
    padding: 10px 20px;
  }
  .logo__twitter {
    background-color: $color-blue;
    border-radius: 16px;
    padding: 10px 20px;
  }
}

뎞률 @extendëĨž ė‚ŽėšĐ하ė—Ž ėˆ˜ė •í•  ėˆ˜ ėžˆë‹Ī.


âœĻ ë‚īėž 할 ęēƒ

  1. grid practice
profile
ëŠĨ동ė ėœžëĄœ ė‚īėž, 행ëģĩ하ęēŒðŸ˜

0개ė˜ 댓ęļ€