<a href="#" class="list-teaser-podcast list-teaser-podcast--avatar--overlay--big" style="background-image: url(../../assets/example-content/heribert-rechts.png), url(../../assets/example-content/heribert-links.png) ">
    <div class="list-teaser-podcast__body">
        <div class="list-teaser-podcast__caption">Podcast</div>
        <h2 class="list-teaser-podcast__headline">Podcast Headline</h2>
        <h3 class="list-teaser-podcast__subheadline">
            Podcast Subheadline
        </h3>
        <span class="icon icon-arrow-long-right icon--brand-white"></span>
    </div>
    <div class="list-teaser-podcast__footer">
        <div class="podcast-author" itemscope itemtype="http://schema.org/Person">
            Heribert Innoq
        </div>
        <div class="podcast-author" itemscope itemtype="http://schema.org/Person">
            Heribert Innoq
        </div>
        <div class="podcast-author" itemscope itemtype="http://schema.org/Person">
            Heribert Innoq
        </div>
        <div class="podcast-author" itemscope itemtype="http://schema.org/Person">
            Heribert Innoq
        </div>
    </div>
</a>
<a href="#" class="list-teaser-podcast list-teaser-podcast--avatar--overlay--big" style="background-image: url({{ path '/assets/example-content/heribert-rechts.png' }}), url({{ path '/assets/example-content/heribert-links.png' }}) ">
    <div class="list-teaser-podcast__body">
        <div class="list-teaser-podcast__caption">Podcast</div>
        <h2 class="list-teaser-podcast__headline">Podcast Headline</h2>
        <h3 class="list-teaser-podcast__subheadline">
            Podcast Subheadline
        </h3>
        <span class="icon icon-arrow-long-right icon--brand-white"></span>
    </div>
    <div class="list-teaser-podcast__footer">
        <div class="podcast-author" itemscope itemtype="http://schema.org/Person" >
            Heribert Innoq
        </div>
        <div class="podcast-author" itemscope itemtype="http://schema.org/Person" >
            Heribert Innoq
        </div>
        <div class="podcast-author" itemscope itemtype="http://schema.org/Person" >
            Heribert Innoq
        </div>
        <div class="podcast-author" itemscope itemtype="http://schema.org/Person" >
            Heribert Innoq
        </div>
    </div>
</a>
/* No context defined. */
  • Content:
    $podcast-teaser-height-sm: ms(30);
    $podcast-teaser-height-md: ms(35);
    
    .list-teaser-podcast {
      @extend %list-teaser;
      @extend %block-link;
      @extend %hover-glow;
    
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    
      width: 100%;
      min-height: $podcast-teaser-height-sm;
    }
    
    .list-teaser-podcast__body {
      margin-bottom: 0;
      padding: $spacer-sm $spacer-md;
    }
    
    .list-teaser-podcast__footer {
      margin-bottom: 0;
      padding: $spacer-sm $spacer-md;
    
      > * {
        margin: 0;
      }
    }
    
    .list-teaser-podcast__caption {
      @extend %teaser-caption;
    
      &--security {
        color: $podcast-teaser-default-bg-sec;
      }
    }
    
    .list-teaser-podcast__headline {
      @extend %h2;
    
      margin-bottom: $spacer-md;
      color: $podcast-teaser-default-color;
    
      &--security {
        color: $podcast-teaser-default-bg-sec;
      }
    }
    
    .list-teaser-podcast__subheadline {
      @extend %body-font-italic;
    
      margin-bottom: $spacer-xs;
      font-size: $font-size-sm;
      color: $podcast-teaser-default-color;
    
      &--security {
        color: $podcast-teaser-default-bg-sec;
      }
    }
    
    .podcast-author {
      @extend %heading-font-bold;
    
      font-size: $font-size-base;
      text-transform: uppercase;
    
      &--security {
        color: $podcast-teaser-default-bg-sec;
      }
    }
    
    @media screen and (min-width: $grid-breakpoint-md) {
      .list-teaser-podcast {
        min-height: $podcast-teaser-height-md;
      }
    }
    
    .list-teaser-podcast--avatar--overlay--big {
      color: $podcast-teaser-default-color;
    
      background-color: $podcast-teaser-overlay-color;
      background-repeat: no-repeat;
      background-position:
        top right,
        top left;
      background-size: 0%;
      background-blend-mode: multiply;
    
      &--security {
        background-color: $podcast-teaser-overlay-color-sec;
      }
    
      .list-teaser-podcast__body {
        padding: $spacer-lg;
        text-align: center;
      }
    
      .list-teaser-podcast__footer {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        // IE11 Hack
        @media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
          justify-content: space-around;
        }
      }
    }
    
    //Breakpoints
    @media screen and (min-width: $grid-breakpoint-md) {
      .list-teaser-podcast--avatar--overlay--big {
        background-size: contain;
      }
    }
    
  • URL: /components/raw/podcast-list-teaser/_podcast-list-teaser.scss
  • Filesystem Path: components/04-molecules/teaser/list-teaser/podcast-list-teaser/_podcast-list-teaser.scss
  • Size: 2.2 KB

No notes defined.