No notes defined.
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It 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.</p>
<blockquote>
<figure class="blockquote__figure align-right size-small">
<img src="https://picsum.photos/480/480?random=1" alt="" />
</figure>
<q class="blockquote__title">...about as complex as a blockquote could ever be.</q>
<div class="blockquote__prose">
<p>It contains a figure with an alignment (and sizing) class on it, and becuase it's inside a quote we add a <code>border-radius</code> and a <code>shape-outside</code> in the CSS to make it wrap to a circlular shape - neat huh?</p>
<>It's got a title, some "prose", and a footer, which has not only a citation, but a title of the person giving it too. We'll use this largely for the Testimonial Card component.</p>
</div>
<footer class="blockquote__footer">
<cite class="cite">Dan Sheerman</cite>
<p>Vice President of naming complicated variants of things</p>
</footer>
</blockquote>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It 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.</p>
<p>{{ loremLong }}</p>
<blockquote>
<figure class="blockquote__figure align-right size-small">
<img src="https://picsum.photos/480/480?random=1" alt=""/>
</figure>
<q class="blockquote__title">...about as complex as a blockquote could ever be.</q>
<div class="blockquote__prose">
<p>It contains a figure with an alignment (and sizing) class on it, and becuase it's inside a quote we add a <code>border-radius</code> and a <code>shape-outside</code> in the CSS to make it wrap to a circlular shape - neat huh?</p>
<>It's got a title, some "prose", and a footer, which has not only a citation, but a title of the person giving it too. We'll use this largely for the Testimonial Card component.</p>
</div>
<footer class="blockquote__footer">
<cite class="cite">Dan Sheerman</cite>
<p>Vice President of naming complicated variants of things</p>
</footer>
</blockquote>
<p>{{ loremLong }}</p>
blockquote,
.blockquote {
@include blockquote;
footer {
margin-top: $spacing-lg;
@include typescale('sm');
}
}
cite,
.cite {
@include cite;
}
.blockquote--large,
.blockquote--short {
@include typescale('2xl', 'em');
@include line-height('headings');
@media (min-width: $breakpoint-largescreen-typography) {
@include typescale('4xl', 'em');
}
}
.blockquote--small,
.blockquote--long {
@include typescale('lg', 'em');
@media (min-width: $breakpoint-largescreen-typography) {
@include typescale('xl', 'em');
}
}
.blockquote__title {
color: $primary;
color: var(--accent-color, #{$primary});
@include typescale('2xl');
@media (min-width: $breakpoint-largescreen-typography) {
@include typescale('3xl');
}
}
.blockquote__highlight {
color: $primary;
color: var(--accent-color, #{$primary});
}
.blockquote__footer {
margin-top: $spacing-lg;
@include typescale('md');
}
.blockquote__prose {
margin: $spacing-lg 0;
@include typescale('md');
@include line-height('spaced');
}
.blockquote__figure {
shape-outside: circle(60%) padding-box;
img {
margin-left: auto;
margin-right: auto;
max-height: 40vmin;
width: auto;
}
}