Source: dist/css/acc_uc.css, line 2330
6 List
Description: A major part of the construction of the web and the content of the web are lists.
Source: dist/css/acc_uc.css, line 2330
Description: A major part of the construction of the web and the content of the web are lists.
Source: dist/css/acc_uc.css, line 2390
Markers classes change the styles and looks of the the list item maker. Marker must attach to the parent UL or Ol and will not style the grand children.
primary colored list markers.
secondary colored list markers.
accent colored list markers.
alert colored list markers.
warning colored list markers.
success colored list markers.
highlight colored list markers.
black colored list markers.
white colored list markers.
<ul class="[modifier class]">
<li>List Item Text</li>
<li>List Item Text</li>
<li>List Item Text
<ul class="">
<li>List Item Grand Children</li>
<li>List Item Grand Children</li>
</ul>
</li>
</ul>
<ol class="[modifier class]">
<li>List Item Text</li>
<li>List Item Text</li>
<li>List Item Text</li>
</ol>
Source: dist/css/acc_uc.css, line 2339
Change the type of a list.
none
bullet
square
<div class="font_normal font_1 p_3">
<h3 class="font_2 font_bold c_shade_3 p-b_3">[modifier class]</h3>
<ul class="[modifier class]">
<li>Lorem, ipsum dolor sit amet consectetur adipisicing elit.</li>
<li>Lorem, ipsum dolor sit amet consectetur adipisicing elit.</li>
<li>Lorem, ipsum dolor sit amet consectetur adipisicing elit.</li>
<li>Lorem, ipsum dolor sit amet consectetur adipisicing elit.</li>
<li>Lorem, ipsum dolor sit amet consectetur adipisicing elit.</li>
</ul>
</div>
Source: dist/css/acc_uc.css, line 2480
Add counters in front of collections without the need of an OL or UL for an advanced list type. Counters cannot be nested!
Source: dist/css/acc_uc.css, line 2491
Counter can be incremented by the counter_increment
class.
<div class="counter_reset">
<div class="bg_primary-2 p_3 m_3"><span class="font_bold counter counter_increment">:</span> Item, Object, or Section</div>
<div class="bg_primary-2 p_3 m_3"><span class="font_bold counter counter_increment">:</span> Item, Object, or Section</div>
<div class="bg_primary-2 p_3 m_3"><span class="font_bold counter counter_increment">:</span> Item, Object, or Section</div>
</div>
Source: dist/css/acc_uc.css, line 2520
Counter Subs can be nested inside of counters
<div class="counter_reset ">
<div class="bg_primary-2 p_3 m_3"><span class="font_bold counter counter_increment counter_upper-alpha"></span> Item, Object, or Section</div>
<div class="counter-sub_reset">
<div class="m_3 p_2 p-l_4 bg_primary-3"><span class="font_bold counter counter_upper-alpha"></span>.<span class="font_bold counter-sub counter-sub_increment counter-sub_lower-alpha"></span> Sub Item</div>
<div class="m_3 p_2 p-l_4 bg_primary-3"><span class="font_bold counter counter_upper-alpha"></span>.<span class="font_bold counter-sub counter-sub_increment counter-sub_lower-alpha"></span> Sub Item</div>
<div class="m_3 p_2 p-l_4 bg_primary-3"><span class="font_bold counter counter_upper-alpha"></span>.<span class="font_bold counter-sub counter-sub_increment counter-sub_lower-alpha"></span> Sub Item</div>
</div>
<div class="bg_primary-2 p_3 m_3"><span class="font_bold counter counter_increment counter_upper-alpha"></span> Item, Object, or Section</div>
<div class="bg_primary-2 p_3 m_3"><span class="font_bold counter counter_increment counter_upper-alpha"></span> Item, Object, or Section</div>
</div>
Source: dist/css/acc_uc.css, line 2548
Create different types of list with the counter types
Defualt Number Listing
Lowercase Alphabetic Listing
Uppercase Alphabetic Listing
Lowercase Roman Listing
Uppercase Roman Listing
<div class="counter_reset">
<div class="m_3 p_3 bg_primary-2"><span class="[modifier class] font_bold counter_increment"></span> Item, Object, or Section</div>
<div class="m_3 p_3 bg_primary-2"><span class="[modifier class] font_bold counter_increment"></span> Item, Object, or Section</div>
<div class="m_3 p_3 bg_primary-2"><span class="[modifier class] font_bold counter_increment"></span> Item, Object, or Section</div>
</div>
Source: dist/css/acc_uc.css, line 2605
Quickly decorate the counter with a circle. Change the bgground and font color with utility classes to acheive different effects.
<div class="counter_reset">
<div class="m_3 p_3"><span class="font_bold counter counter_increment order-marker bg_primary-2"></span> Item, Object, or Section</div>
<div class="m_3 p_3"><span class="font_bold counter counter_increment order-marker font_10 br-tr_round br-br_round bg_highlight-2"></span> Item, Object, or Section</div>
<div class="m_3 p_3"><span class="font_bold counter counter_increment order-marker bg_info-2"></span> Item, Object, or Section</div>
<div class="m_3 p_3"><span class="font_bold counter counter_increment order-marker bg_warning-2"></span> Item, Object, or Section</div>
</div>
Source: dist/css/acc_uc.css, line 2639
Inline Lists are for separated items on a single line.
basic ul with no separators but formatted with flex row
basic inline ul with no separators
wrapping line of text that is separated by commas
wrapping line of text that is separated by semicolons
wrapping line of text that is separated by pipes
<div class="font_normal font_1 p_3">
<h3 class="font_2 font_bold c_shade_3 p-b_3">[modifier class]</h3>
<ul class="[modifier class]">
<li>Evelyn Watsica II</li>
<li>Linda Lang</li>
<li>Laurie Greenfelder</li>
<li>Katie Wiegand</li>
<li>Brittany Conn</li>
</ul>
</div>
<style>
[class^="ul_inline"] > li:last-child::after {
content:"" !important;
padding-inline-start: 0 !important;
padding-inline-end: 0 !important;
}
</style>