"Single Column Timeline"
Bootstrap 3.1.0 Snippet by jeremyxledford

<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="container"> <ul class="timeline"> <li> <div class="timeline-badge">1988</div> <div class="timeline-panel"> <div class="timeline-heading"> <h4 class="timeline-title">BIO-CAT founded; 3 employees</h4> </div> </div> </li> <li> <div class="timeline-badge">1990</div> <div class="timeline-panel"> <div class="timeline-heading"> <h4 class="timeline-title">BIO-CAT moves to a new building in Louisa, VA</h4> </div> </div> </li> <li> <div class="timeline-badge">1995</div> <div class="timeline-panel"> <div class="timeline-heading"> <h4 class="timeline-title">BIO-CAT moves to present 26 acre facility in Troy, VA</h4> </div> </div> </li> <li> <div class="timeline-badge">1997-98</div> <div class="timeline-panel"> <div class="timeline-heading"> <h4 class="timeline-title">15,000 sq ft expansion for production and warehouse space; 15 employees</h4> <div class="timeline-body"> BIO-CAT becomes North American distributor for DuPont (Genencor’s) specialty and cleaning product lines </div> </div> </div> </li> <li> <div class="timeline-badge">1999</div> <div class="timeline-panel"> <div class="timeline-heading"> <h4 class="timeline-title">37,000 sq ft expansion for warehouse, refrigerated storage and production</h4> </div> </div> </li> <li> <div class="timeline-badge">2003</div> <div class="timeline-panel"> <div class="timeline-heading"> <h4 class="timeline-title">Construction complete on new 2,500 sq ft state-of-the-art Quality Control (QC) laboratory</h4> <div class="timeline-body"> Received ISO 9001:2000 accreditation </div> </div> </div> </li> <li> <div class="timeline-badge">2004</div> <div class="timeline-panel"> <div class="timeline-heading"> <h4 class="timeline-title">2,100 sq ft warehouse expansion </h4> <div class="timeline-body"> BIO-CAT acquires Advanced Microbial Systems and changes the name to BIO-CAT Microbials </div> </div> </div> </li> <li> <div class="timeline-badge">2005-06</div> <div class="timeline-panel"> <div class="timeline-heading"> <h4 class="timeline-title">New QC laboratory is built; 30 employees</h4> <div class="timeline-body"> BIO-CAT expands liquid enzyme handling capabilities </div> </div> </div> </li> <li> <div class="timeline-badge">2009</div> <div class="timeline-panel"> <div class="timeline-heading"> <h4 class="timeline-title">Received ISO 9001:2008 Certification</h4> </div> </div> </li> <li> <div class="timeline-badge">2010</div> <div class="timeline-panel"> <div class="timeline-heading"> <h4 class="timeline-title">Exclusive North American Distributor for DS enzymes of Amano Enzyme- Nagoya, Japan</h4> </div> </div> </li> <li> <div class="timeline-badge">2011</div> <div class="timeline-panel"> <div class="timeline-heading"> <h4 class="timeline-title">Exclusive North American Distributor for DS enzymes of Shin Nihon Chemical- Anjyo, Japan</h4> <div class="timeline-body"> 6,800 expansion on R&D lab, executive and sales offices </div> </div> </div> </li> <li> <div class="timeline-badge">2013</div> <div class="timeline-panel"> <div class="timeline-heading"> <h4 class="timeline-title">15,000 sq ft expansion on production and warehouse space</h4> </div> </div> </li> <li> <div class="timeline-badge">2014</div> <div class="timeline-panel"> <div class="timeline-heading"> <h4 class="timeline-title">More construction… expanding main entrance and parking lots, 45 employees</h4> </div> </div> </li> </ul> </div>
.timeline { list-style: none; padding: 20px 0 20px; position: relative; } .timeline:before { top: 0; bottom: 0; position: absolute; content: " "; width: 3px; background-color: #eeeeee; right: 25px; margin-left: -1.5px; } .timeline > li { margin-bottom: 20px; position: relative; } .timeline > li:before, .timeline > li:after { content: " "; display: table; } .timeline > li:after { clear: both; } .timeline > li:before, .timeline > li:after { content: " "; display: table; } .timeline > li:after { clear: both; } .timeline > li > .timeline-panel { width: calc( 100% - 75px ); float: left; border: 1px solid #d4d4d4; border-radius: 2px; padding: 20px; position: relative; -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175); box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175); } .timeline > li > .timeline-panel:before { position: absolute; top: 26px; right: -15px; display: inline-block; border-top: 15px solid transparent; border-left: 15px solid #ccc; border-right: 0 solid #ccc; border-bottom: 15px solid transparent; content: " "; } .timeline > li > .timeline-panel:after { position: absolute; top: 27px; right: -14px; display: inline-block; border-top: 14px solid transparent; border-left: 14px solid #fff; border-right: 0 solid #fff; border-bottom: 14px solid transparent; content: " "; } .timeline > li > .timeline-badge { color: #fff; width: 50px; height: 50px; line-height: 50px; font-size: .9em; text-align: center; position: absolute; top: 16px; right: 0px; margin-left: -25px; background-color: #009645; z-index: 100; border-top-right-radius: 50%; border-top-left-radius: 50%; border-bottom-right-radius: 50%; border-bottom-left-radius: 50%; } .timeline > li.timeline-inverted > .timeline-panel { float: right; } .timeline > li.timeline-inverted > .timeline-panel:before { border-left-width: 0; border-right-width: 15px; left: -15px; right: auto; } .timeline > li.timeline-inverted > .timeline-panel:after { border-left-width: 0; border-right-width: 14px; left: -14px; right: auto; } .timeline-badge.primary { background-color: #2e6da4 !important; } .timeline-badge.success { background-color: #3f903f !important; } .timeline-badge.warning { background-color: #f0ad4e !important; } .timeline-badge.danger { background-color: #d9534f !important; } .timeline-badge.info { background-color: #5bc0de !important; } .timeline-title { margin-top: 0; color: inherit; } .timeline-body > p, .timeline-body > ul { margin-bottom: 0; } .timeline-body > p + p { margin-top: 5px; }

Related: See More


Questions / Comments: