This is the base settings of Schema. Look for the frame.less
file. You'll find styling for
the body
, ul,ol
, a
, etc.
The body of Schema lives inside the variables.less
file. If you're looking
to get under the hood to change what is provided then this is where you will do it at.
You'll find helper classes in the helpers.less
file. Classes like .right-float
will
float an element to the right.
<a href="#">This is a link</a>
Horizontal Rules are simple. We have a mixin for that. Want to change the color or size? Find the HR builder in the
mixins.less
file.
EXAMPLE
<hr />
Create an unordered list with the ul
element, or an ordered list with the ol
element.
EXAMPLE
<ul>
<li></li>
<li>
<ul>
<li>…</li>
<li>…</li>
</ul>
</li>
<li></li>
</ul>