Bootstrap snippet and html example. bs4 project list with progress

This html snippet was created to help web designers, web developers, front-end and back-end developer save time. Use it for free in your project and build your app faster, You can also download the HTML, CSS, and JS code.
Tags: projects,list,progress,cards

HTML code

This is the html code used to create this bootstrap snippet, You can copy and paste the following html code inside a page with bootstrap 4.1.1 included, to get the result that you can see in the preview selection

<section class="projects no-padding-top">
<div class="container">
  <!-- Project-->
  <div class="project">
    <div class="row bg-white has-shadow">
      <div class="left-col col-lg-6 d-flex align-items-center justify-content-between">
        <div class="project-title d-flex align-items-center">
          <div class="image has-shadow"><img src="https://bootdey.com/img/Content/avatar/avatar2.png" alt="..." class="img-fluid"></div>
          <div class="text">
            <h3 class="h4">Project Title</h3><small>Lorem Ipsum Dolor</small>
          </div>
        </div>
        <div class="project-date"><span class="hidden-sm-down">Today at 4:24 AM</span></div>
      </div>
      <div class="right-col col-lg-6 d-flex align-items-center">
        <div class="time"><i class="fa fa-clock-o"></i>12:00 PM </div>
        <div class="comments"><i class="fa fa-comment-o"></i>20</div>
        <div class="project-progress">
          <div class="progress">
            <div role="progressbar" style="width: 45%; height: 6px;" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100" class="progress-bar bg-red"></div>
          </div>
        </div>
      </div>
    </div>
  </div>
  <!-- Project-->
  <div class="project">
    <div class="row bg-white has-shadow">
      <div class="left-col col-lg-6 d-flex align-items-center justify-content-between">
        <div class="project-title d-flex align-items-center">
          <div class="image has-shadow"><img src="https://bootdey.com/img/Content/avatar/avatar8.png" alt="..." class="img-fluid"></div>
          <div class="text">
            <h3 class="h4">Project Title</h3><small>Lorem Ipsum Dolor</small>
          </div>
        </div>
        <div class="project-date"><span class="hidden-sm-down">Today at 4:24 AM</span></div>
      </div>
      <div class="right-col col-lg-6 d-flex align-items-center">
        <div class="time"><i class="fa fa-clock-o"></i>12:00 PM </div>
        <div class="comments"><i class="fa fa-comment-o"></i>20</div>
        <div class="project-progress">
          <div class="progress">
            <div role="progressbar" style="width: 60%; height: 6px;" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100" class="progress-bar bg-green"></div>
          </div>
        </div>
      </div>
    </div>
  </div>
  <!-- Project-->
  <div class="project">
    <div class="row bg-white has-shadow">
      <div class="left-col col-lg-6 d-flex align-items-center justify-content-between">
        <div class="project-title d-flex align-items-center">
          <div class="image has-shadow"><img src="https://bootdey.com/img/Content/avatar/avatar7.png" alt="..." class="img-fluid"></div>
          <div class="text">
            <h3 class="h4">Project Title</h3><small>Lorem Ipsum Dolor</small>
          </div>
        </div>
        <div class="project-date"><span class="hidden-sm-down">Today at 4:24 AM</span></div>
      </div>
      <div class="right-col col-lg-6 d-flex align-items-center">
        <div class="time"><i class="fa fa-clock-o"></i>12:00 PM </div>
        <div class="comments"><i class="fa fa-comment-o"></i>20</div>
        <div class="project-progress">
          <div class="progress">
            <div role="progressbar" style="width: 50%; height: 6px;" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100" class="progress-bar bg-violet"></div>
          </div>
        </div>
      </div>
    </div>
  </div>
  <!-- Project-->
  <div class="project">
    <div class="row bg-white has-shadow">
      <div class="left-col col-lg-6 d-flex align-items-center justify-content-between">
        <div class="project-title d-flex align-items-center">
          <div class="image has-shadow"><img src="https://bootdey.com/img/Content/avatar/avatar6.png" alt="..." class="img-fluid"></div>
          <div class="text">
            <h3 class="h4">Project Title</h3><small>Lorem Ipsum Dolor</small>
          </div>
        </div>
        <div class="project-date"><span class="hidden-sm-down">Today at 4:24 AM</span></div>
      </div>
      <div class="right-col col-lg-6 d-flex align-items-center">
        <div class="time"><i class="fa fa-clock-o"></i>12:00 PM </div>
        <div class="comments"><i class="fa fa-comment-o"></i>20</div>
        <div class="project-progress">
          <div class="progress">
            <div role="progressbar" style="width: 50%; height: 6px;" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100" class="progress-bar bg-orange"></div>
          </div>
        </div>
      </div>
    </div>
  </div>
</div>
</section>

CSS code

This is the css code used to create this bootstrap snippet, You can copy and paste the following css code inside a page with bootstrap 4.1.1 included, to get the result that you can see in the preview selection

body{
    margin-top:20px;
    background:#eee;
}


.project .row {
    margin: 0;
    padding: 15px 0;
    margin-bottom: 15px
}

.project div[class*='col-'] {
    border-right: 1px solid #eee
}

.project .text h3 {
    margin-bottom: 0;
    color: #555
}

.project .text small {
    color: #aaa;
    font-size: 0.75em
}

.project .project-date span {
    font-size: 0.9em;
    color: #999
}

.project .image {
    max-width: 50px;
    min-width: 50px;
    height: 50px;
    margin-right: 15px
}

.project .time,
.project .comments,
.project .project-progress {
    color: #999;
    font-size: 0.9em;
    margin-right: 20px
}

.project .time i,
.project .comments i,
.project .project-progress i {
    margin-right: 5px
}

.project .project-progress {
    width: 200px
}

.project .project-progress .progress {
    height: 4px
}

.project .card {
    margin-bottom: 0
}

@media (max-width: 991px) {
    .project .right-col {
        margin-top: 20px;
        margin-left: 65px
    }
    .project .project-progress {
        width: 150px
    }
}

@media (max-width: 480px) {
    .project .project-progress {
        display: none
    }
}
.has-shadow {
    -webkit-box-shadow: 2px 2px 2px rgba(0,0,0,0.1), -1px 0 2px rgba(0,0,0,0.05);
    box-shadow: 2px 2px 2px rgba(0,0,0,0.1), -1px 0 2px rgba(0,0,0,0.05);
}
.bg-white {
    background: #fff !important;
}

.bg-red {
    background: #ff7676 !important;
    color: #fff
}

.bg-red:hover {
    color: #fff
}

.bg-blue {
    background: #85b4f2 !important;
    color: #fff
}

.bg-blue:hover {
    color: #fff
}

.bg-yellow {
    background: #eef157 !important;
    color: #fff
}

.bg-yellow:hover {
    color: #fff
}

.bg-green {
    background: #54e69d !important;
    color: #fff
}

.bg-green:hover {
    color: #fff
}

.bg-orange {
    background: #ffc36d !important;
    color: #fff
}

.bg-orange:hover {
    color: #fff
}

.bg-violet {
    background: #796AEE !important;
    color: #fff
}

.bg-violet:hover {
    color: #fff
}

.bg-gray {
    background: #ced4da !important
}

Similar snippets

Bootstrap example and template. bs4 shop cart

bs4 shop cart

Bootstrap example and template. team members cards

team members cards

Bootstrap example and template. news widget

news widget

Bootstrap example and template. Bootdey new snippets cards

Bootdey new snippets cards

Bootstrap example and template. bs5 dark footer

bs5 dark footer

Bootstrap example and template. events card widget

events card widget

Bootstrap example and template. bs5 edit profile account details

bs5 edit profile account details

Bootstrap example and template. file managaer page

file managaer page

Bootstrap example and template. bs4 project list with progress

About this bootstrap example/template

We hope you will enjoy this awesome snippet and stay tuned for the latest updates, bootdey snippets are already used in thousands of blogs, websites and projects. We believe it will save your precious time and gives trendy look to your next web project.

We always try to offer the best beautiful and responsive source of Bootstrap code examples and components.

This code example currectly have 10.9K views, Using this bootstrap snippet you have the following benefits:

Bootstrap 4.1.1

<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css'>

<script src='https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js'></script>

This code example is based on bootstrap 4.1.1 and the grid system of this framework

Responsive

Based on bootstrap framework makes all the layouts perfectly responsive for all devices

Crossbrowser compatibility

Tested on all major browsers, it works smoothly on all of them

semantic html 5

Built on html / css3 the code quality is really amazing

Simple Integration

This code example can be simply integrated on existing sites and new ones too, all you need to do is copy the code and start working