The text banner pattern is a full-width, short message with a background colour.
Text is centre-aligned and the background colour is grey.
<!-- Begin pattern: text-banner //-->
<div class="text-banner ">
<div class="container">
<p>The is the beta version of st-andrews.ac.uk. <a href="#">Leave your feedback</a>.</p>
</div>
</div>
<!-- End pattern: text-banner //-->
Text is centre-aligned and the background colour is the primary palette colour (.primary
).
<!-- Begin pattern: text-banner //-->
<div class="text-banner primary">
<div class="container">
<p>The is the beta version of st-andrews.ac.uk. <a href="#">Leave your feedback</a>.</p>
</div>
</div>
<!-- End pattern: text-banner //-->
Text is centre-aligned and the background colour is the secondary palette colour (.secondary
).
<!-- Begin pattern: text-banner //-->
<div class="text-banner secondary">
<div class="container">
<p>The is the beta version of st-andrews.ac.uk. <a href="#">Leave your feedback</a>.</p>
</div>
</div>
<!-- End pattern: text-banner //-->
Text is centre-aligned and the background colour is green (.success
).
<!-- Begin pattern: text-banner //-->
<div class="text-banner success">
<div class="container">
<p>The is the beta version of st-andrews.ac.uk. <a href="#">Leave your feedback</a>.</p>
</div>
</div>
<!-- End pattern: text-banner //-->
Text is centre-aligned and the background colour is blue (.info
).
<!-- Begin pattern: text-banner //-->
<div class="text-banner info">
<div class="container">
<p>The is the beta version of st-andrews.ac.uk. <a href="#">Leave your feedback</a>.</p>
</div>
</div>
<!-- End pattern: text-banner //-->
Text is centre-aligned and the background colour is yellow (.warning
).
<!-- Begin pattern: text-banner //-->
<div class="text-banner warning">
<div class="container">
<p>The is the beta version of st-andrews.ac.uk. <a href="#">Leave your feedback</a>.</p>
</div>
</div>
<!-- End pattern: text-banner //-->
Text is centre-aligned and the background colour is red (.danger
).
<!-- Begin pattern: text-banner //-->
<div class="text-banner danger">
<div class="container">
<p>The is the beta version of st-andrews.ac.uk. <a href="#">Leave your feedback</a>.</p>
</div>
</div>
<!-- End pattern: text-banner //-->
Text is left-aligned (.left
) and the background colour is the primary palette colour (.primary
).
<!-- Begin pattern: text-banner //-->
<div class="text-banner primary left">
<div class="container">
<p>The is the beta version of st-andrews.ac.uk. <a href="#">Leave your feedback</a>.</p>
</div>
</div>
<!-- End pattern: text-banner //-->
Text is right-aligned (.right
) and the background colour is the primary palette colour (.primary
).
<!-- Begin pattern: text-banner //-->
<div class="text-banner primary right">
<div class="container">
<p>The is the beta version of st-andrews.ac.uk. <a href="#">Leave your feedback</a>.</p>
</div>
</div>
<!-- End pattern: text-banner //-->