<section class="hero " role="region">
    <div class="main-img">
        <img src="/images/hero.jpg" alt="" />
    </div>
</section>
<section class="hero {{ caption_class }}" role="region">
	<div class="main-img">
		{% block cms_override %}
			<img src="{{ img_src }}" alt=""/>
		{% endblock cms_override %}
	</div>
</section>
{
  "img_src": "/images/hero.jpg",
  "caption": "Get the transformative education a dynamic world demands where business and technology meet.",
  "caption_class": "",
  "headline_text": "Break Out of the Box"
}
  • Content:
    .hero {
      position: relative;
    
      &.white {
        background-color: $grey_dark;
      }
    
      .main-img {
        z-index: 1;
    
        img {
          @include img;
        }
      }
    }
    
  • URL: /components/raw/hero/hero.scss
  • Filesystem Path: components/03-sections/03-hero/hero.scss
  • Size: 155 Bytes

No notes defined.