No notes defined.

<div class="box  box--padded  box--border-tertiary">
    <h2 class="strong">Did you know?</h2>
    <p><a href="" class="pointyLink  pointyLink--tertiary  link--plain">Lipsum has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</a></p>
    <button class="button  button--tertiary  button--xs">Next</button>
</div>
<div class="box  box--padded  box--border-tertiary">
  <h2 class="strong">Did you know?</h2>
  <p><a href="" class="pointyLink  pointyLink--tertiary  link--plain">{{ lorem }}</a></p>
  <button class="button  button--tertiary  button--xs">Next</button>
</div>
  • Content:
    $box__border-width: $border-accent-width*2;
    
    .box {
    	background: $offwhite;
    	margin-bottom: $spacing-lg;
    
    	&__content,
    	&--padded {
    		@include box__padding;
    
    		> *:first-child {
    			margin-top: 0;
    		}
    
    		> *:last-child {
    			margin-bottom: 0;
    		}
    	}
    
    	&--white {
    		background: white;
    	}
    
    	&--tertiary {
    		background: $tertiary;
    		color: white;
    	}
    
    	&--border-tertiary {
    		background: white;
    		border: $box__border-width solid $tertiary;
    	}
    }
  • URL: /components/raw/box/_box.scss
  • Filesystem Path: web/themes/custom/um-ssw/components/box/_box.scss
  • Size: 439 Bytes