[TIL] 220209

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

TIL

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

📝 ė˜Ī늘 한 ęēƒ

  1. scss practice

  2. prototype / hashtable


📚 ë°°ėšī ęēƒ

prototypeęģž hashtableė€ TIL ėž‘ė„ą x

1. scss practice

1) besthorrorscenes

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

(1) HTML ė‹œë§Ļ틱 태ę·ļ

  • mainė€ headerė™€ footerëĨž ė§ė ‘ė ėœžëĄœ 가ė§ˆ ėˆ˜ ė—†ë‹Ī.
    (main ė•ˆė˜ sectionė€ headerė™€ footerëĨž 가ė§ˆ ėˆ˜ ėžˆë‹Ī.)

  • mainė€ sectionėī나 articleė„ 가ė§ˆ ėˆ˜ ėžˆė§€ë§Œ, mainė„ 가ė§ˆ ėˆ˜ ėžˆëŠ” ęąī body ëŋėīë‹Ī.

  • section ė•ˆė— articleė„ ë°°ėđ˜í•  ėˆ˜ë„ ėžˆęģ , article ė•ˆė— sectionė„ ë°°ėđ˜í•  ėˆ˜ë„ ėžˆë‹Ī.

  • articleė€ 반드ė‹œ ė œëŠĐ(h1~h6)ė„ 가ė ļė•ž 한ë‹Ī.

a:link, a:visited, a:hover, a:active ėˆœė„œëĄœ ėž‘ė„ąí•īė•ž 한ë‹Ī. (LVHA)

(3) header

index.html

<header>
  <h1>BEST HORROR SCENES</h1>
  <div class="intro">
    <p class="site-explain__main">
      <!-- ėĪ‘ëžĩ -->
    </p>
    <p class="site-explain__details">
      <!-- ėĪ‘ëžĩ -->
    </p>
  </div>
  <nav>
    <ul>
      <li><a href="#">Newsletter</a></li>
      <li><a href="#">Suggest a Scene</a></li>
      <li><a href="#">YouTube</a></li>
      <li><a href="#">Twitter</a></li>
      <li><a href="#">Contact</a></li>
      <li><a href="#">RSS</a></li>
      <li><a href="#">Letterboxd</a></li>
    </ul>
  </nav>
  <p class="site-explain__additional">
    <!-- ėĪ‘ëžĩ -->
  </p>
</header>

styles.scss

@import "_header";

body {
  display: flex;
}

_variables.scss

/* 폰íŠļ */
$font-size-h1: 70px;
$font-size-h2: 40px;
$font-size-medium: 25px;
$font-size-regular: 15px;
$font-size-small: 11px;

/* ėƒ‰ėƒ */
$color-red: rgb(226, 14, 14);
$color-dark-grey: rgb(29, 29, 29);
$color-grey: rgb(99, 99, 99);
$color-light-grey: rgb(231, 231, 231);

_mixins.scss

@mixin siteExplain($size) {
  color: $color-red;
  font-size: $size;
  padding-bottom: 30px;
}

@mixin link($light-color, $dark-color) {
  a,
  a:visited {
    color: $light-color;
    font-weight: bold;
    &:hover,
    &:active {
      color: $dark-color;
    }
  }
}

_header.scss

@import "_mixins";
@import "_variables";

header {
  background-color: $color-light-grey;
  padding: 60px 40px;

  h1 {
    @include siteExplain($font-size-h1);
    padding-bottom: 60px;
  }

  .intro {
    .site-explain__main {
      @include siteExplain($font-size-medium);
    }
    .site-explain__details {
      @include siteExplain($font-size-regular);
    }
  }

  nav {
    padding-bottom: 30px;
    li {
      display: inline;
      font-size: $font-size-regular;
      text-decoration: underline;
      @include link($color-grey, $color-dark-grey);
    }
  }

  .site-explain__additional {
    font-size: $font-size-small;
  }
}

@extendė™€ @mixin ėĪ‘ ė–īë–Ī ęēƒė„ ė‚ŽėšĐí•īė•ž 할ė§€ ęģ ëŊží–ˆë‹Ī.

@mixinė€ ė„œëĄœ ęī€ë Ļ ė—†ëŠ” ė―”ë“œė˜ ėĪ‘ëģĩė„ 픾하ęļ° ėœ„í•ī ė‚ŽėšĐ되는 반ëĐī,
@extend는 ė„œëĄœ ęī€ë Ļ ėžˆëŠ” ė―”ë“œë“Īė„ 한 ęģģė— ëŽķęļ° ėœ„í•ī ė‚ŽėšĐ된ë‹Ī.


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

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

0개ė˜ 댓ęļ€