Source: _fonts.scss, line 1
@mixin text
@mixin title
This is an example of a regular paragraph
This is an example of a prettier paragraph
<h2>This is an example of a regular title</h2>
<p>This is an example of a regular paragraph</p>
<h2 class="title">This is an example of a prettier title</h2>
<p class="text">This is an example of a prettier paragraph</p>
Source: _fonts.scss, line 115
Text that holds very thin text inside of it
Text that holds Quite thin text inside of it
Text that holds Some sort of note inside of it
<p class="text">Text that holds <span class="thin">very thin text</span> inside of it</p>
<p class="text">Text that holds <span class="light">Quite thin text</span> inside of it</p>
<p class="text">Text that holds <span class="note">Some sort of note</span> inside of it</span></p>
Source: _fonts.scss, line 29
@mixin th(th)
Use these classes to quicky change the fontsize
@mixin tb(bigger)
@mixin ts(smaller)
This is a font size
This is a font size
This is a font size
This is a font size
<div>
<p class="tb3">This is a font size</p>
<p class="tb1">This is a font size</p>
<p class="ts1">This is a font size</p>
<p class="ts3">This is a font size</p>
</div>
Source: _fonts.scss, line 89
@mixin smaller
@mixin bigger
Text that holds some smaller text inside of it
Text that holds some bigger text inside of it
<p>Text that holds <span class="smaller">some smaller text</span> inside of it</p>
<p>Text that holds <span class="bigger">some bigger text</span> inside of it</p>