<h3 class="heading-08"><span class="heading-08__num">01</span>見出しが<span class="heading-08__strong">入ります</span></h3>
h3.heading-08
  span.heading-08__num #{ num }
  | 見出しが
  span.heading-08__strong 入ります
{
  "num": "01"
}
  • Content:
    $BLOCK_NAME: '.heading-08';
    
    // 変数
    $color_primary: #00529c;
    $color_black: #333333;
    $color_gray: #bbbbbb;
    
    #{ $BLOCK_NAME } {
      margin-bottom: 40px;
      font-family: '游ゴシック', YuGothic, sans-serif;
      font-size: 42px;
      font-weight: normal;
      line-height: 1;
      color: $color_gray;
    
      &__num {
        display: inline-block;
        padding-right: 10px;
        padding-bottom: 15px;
        margin-right: 20px;
        font-family: 'Oswald', sans-serif;
        font-size: 75px;
        font-style: italic;
        font-weight: 200;
        line-height: 1;
        color: $color_black;
        letter-spacing: 0.01em;
        border-bottom: 4px solid $color_black;
      }
    
      &__strong {
        color: $color_primary;
      }
    }
    
  • URL: /components/raw/heading08/heading08.scss
  • Filesystem Path: src/components/headings/heading08/heading08.scss
  • Size: 712 Bytes