Quasar Typography     


See how headings, blockquotes, definitions lists and more are displayed in the demo. At the end of this page you can read about CSS helper classes.

Default MD Font

The default font embedded in Quasar App when built with Material Design Theme is Roboto. It comes with 5 different font weights you can use: 200, 300, 400, 500, 600. Below is an image from Google’s Roboto Specimen document displaying the different font weights:


Roboto Font

NOTE
You can embed it for iOS theme too by copying font related code from themes/app.mat.styl to themes/app.ios.styl and requiring the .styl version of CSS in src/App.vue

Text Types

You can display text in a variety of ways.

<!-- Token (as CSS class) -->
<span class="token">blue</span>
<!-- Small and Big text -->
<small>Text</small>
<big>Text</big>
<!-- sub and sup -->
<sub>Subtext</sub>
<sup>Supertext</sup>
<!-- Paragraphs -->
<p>Default Paragraph</p>
<p class="caption">Caption Paragraph</p>
<p class="light-paragraph">Light Paragraph</p>
<p class="thin-paragraph">Thin Paragraph</p>
<!-- Bold or italic -->
<p class="text-bold">Bold text</p>
<!-- or: --><strong>Bold text</strong>
<p class="text-italic">Italic text</p>
<!-- or: --><em>Italic text</em>
<!-- Quotes -->
<div class="quote">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.
</div>
<div class="quote text-right">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.
</div>
<!-- Blockquotes -->
<blockquote>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
<small>Someone famous for <cite title="Quasar Framework">Quasar Framework</cite></small>
</blockquote>
<blockquote class="text-right">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
<small>Someone famous for <cite title="Quasar Framework">Quasar Framework</cite></small>
</blockquote>
<!-- Definition Lists -->
<dl>
<dt>Description lists</dt>
<dd>A description list is perfect for defining terms.</dd>
<dt>Euismod</dt>
<dd>Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.</dd>
</dl>
<dl class="horizontal">
<dt>Description lists</dt>
<dd>A description list is perfect for defining terms.</dd>
<dt>Euismod</dt>
<dd>Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.</dd>
</dl>
<!-- Tokens; alternative: Chips -->
<span class="token">Some token</span>

CSS Helper Classes

Class NameDescription
text-rightAlign text to the right
text-leftAlign text to the left
text-centerAlign text to the center
text-justifyText will be justified
text-truncateApplies all CSS tweaks to truncate text when container is too small
text-boldText will be in bold
text-italicText will be in italic
captionFor use on caption parapgraphs
light-paragraphApplies a font-weight of 300
thin-paragraphApplies a font-weight of 200
uppercaseTransform text to uppercase
lowercaseTransform text to lowercase
capitalizeCapitalize first letter of the text
strongDOM element’s font becomes bold
emphasizeDOM element’s font becomes italic
round-bordersEvery Quasar Theme has a generic border radius. This radius is applied to the DOM node
blockdisplay property set to block
no-marginMargins are set to 0
no-paddingPadding is set to 0