Bootstrap snippet and html example. inbox not for email

Bootstrap 3.4.1 snippet "inbox not for email" with HTML, CSS, and JS. Copy, paste, and customize this responsive UI component for your project.
Tags: email,inbox

HTML code

Clean, semantic HTML that powers this Bootstrap 3.4.1 snippet. Copy and paste it into your page (with Bootstrap loaded) to reproduce the exact layout shown in the preview.


<div class="container-fluid content">
        <div class="row">
            <div class="col-sm-3">
                <div class="dropdown">
                    <button class="form-control text-left btn btn-danger dropdown-toggle" type="button" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
                        Solicitar
                        <span class="caret"></span>
                    </button>
                    <ul class="dropdown-menu" aria-labelledby="dropdownMenu2">
                        <li><a href="/colaboradores/admissao">Admissão</a></li>
                        <li><a href="#">Demissão</a></li>
                        <li><a href="#">Férias</a></li>
                        <li role="separator" class="divider"></li>
                        <li><a href="#">Outros</a></li>
                    </ul>
                </div>
                <ul class="nav nav-pills nav-stacked nav-email shadow mb-20">
                    <li class="active">
                        <a href="#mail-inbox.html">
                            <i class="fa fa-inbox"></i> Novas solicitações  <span class="label pull-right">7</span>
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            <i class="fa fa-file-text-o"></i> Férias <span class="label label-info pull-right inbox-notification">1</span>
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            <i class="fa fa-file-text-o"></i> Admissão <span class="label label-info pull-right inbox-notification">2</span>
                        </a>
                    </li>
                    <li>
                        <a href="#">
                            <i class="fa fa-file-text-o"></i> Recisão <span class="label label-info pull-right inbox-notification">1</span>
                        </a>
                    </li>
                    <li><a href="#"> <i class="fa fa-trash-o"></i> Outros</a></li>
                    <!--
                    <li>
                        <a href="#">
                            <i class="fa fa-folder-open"></i> Promotions  <span class="label label-danger pull-right">3</span>
                        </a>
                    </li>
                    -->
                </ul><!-- /.nav -->
            </div>
            <div class="col-sm-9">
                <div class="panel rounded shadow panel-teal">
                    <div class="panel-heading">
                        <div class="pull-left">
                            <h3 class="panel-title">Caixa de entrada (7)</h3>
                        </div>
                        <div class="pull-right">
                            <form action="#" class="form-horizontal mr-5 mt-3">
                                <div class="form-group no-margin no-padding has-feedback">
                                    <input type="text" class="form-control no-border" placeholder="Procurar solicitação">
                                    <button type="submit" class="btn btn-theme fa fa-search form-control-feedback"></button>
                                </div>
                            </form>
                        </div>
                        <div class="clearfix"></div>
                    </div><!-- /.panel-heading -->
                    <div class="panel-sub-heading inner-all">
                        <div class="pull-right">
                            <ul class="list-inline no-margin">
                                <li class="hidden-xs"><span class="text-muted">Mostrando 1-10 de 50 mensagens</span></li>
                                <li>
                                    <div class="btn-group">
                                        <a href="#" class="btn btn-sm btn-default"><i class="fa fa-angle-left"></i></a>
                                        <a href="#" class="btn btn-sm btn-default"><i class="fa fa-angle-right"></i></a>
                                    </div>
                                </li>
                            </ul>
                        </div>
                        <div class="clearfix"></div>
                    </div><!-- /.panel-sub-heading -->
                    <div class="panel-body no-padding">

                        <div class="table-responsive">
                            <table class="table table-hover table-bordered table-email">
                                <tbody>
                                    <tr class="unread selected">
                                        <td>
                                            <div class="media text-left">
                                                <div class="media-body">
                                                    <strong>Solicitação de férias para:</strong> <span class="text-primary">Sergio de Sa Fortes Pereira</span> 
                                                    <span class="media-meta">Hoje as 8:16am</span>
                                                </div>
                                            </div>
                                        </td>
                                    </tr>
                                    <tr>
                                        <td>
                                            <div class="media text-left">
                                                <div class="media-body">
                                                    <strong>Solicitação de recisão para:</strong> <span class="text-primary">Maria Dolores</span> 
                                                    <span class="media-meta">Hoje as 14:16pm</span>
                                                </div>
                                            </div>
                                        </td>
                                    </tr>
                                    
                                </tbody>
                            </table>
                        </div><!-- /.table-responsive -->

                    </div><!-- /.panel-body -->
                </div><!-- /.panel -->
            </div>
        </div>
    </div>

CSS code

Scoped CSS that styles the component. Paste it after Bootstrap 3.4.1 to keep the design, spacing, and responsiveness consistent.


body{margin-top:20px;}
#dropdownMenu2{
text-align:left;
}
.btn-compose-email {
    padding: 10px 0px;
    margin-bottom: 20px;
}

.btn-danger {
    background-color: #E9573F;
    border-color: #E9573F;
    color: white;
}

.panel-teal .panel-heading {
    background-color: #37BC9B;
    border: 1px solid #36b898;
    color: white;
}

.panel .panel-heading {
    padding: 5px;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    border-bottom: 1px solid #DDD;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}

.panel .panel-heading .panel-title {
    padding: 10px;
    font-size: 17px;
}

form .form-group {
    position: relative;
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.inner-all {
    padding: 10px;
}

/* ========================================================================
 * MAIL
 * ======================================================================== */
.nav-email > li:first-child + li:active {
  margin-top: 0px;
}
.nav-email > li + li {
  margin-top: 1px;
}
.nav-email li {
  background-color: white;
}
.nav-email li.active {
  background-color: transparent;
}
.nav-email li.active .label {
  background-color: white;
  color: black;
}
.nav-email li a {
  color: black;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
}
.nav-email li a:hover {
  background-color: #EEEEEE;
}
.nav-email li a i {
  margin-right: 5px;
}
.nav-email li a .label {
  margin-top: -1px;
}

.table-email tr:first-child td {
  border-top: none;
}
.table-email tr td {
  vertical-align: top !important;
}
.table-email tr td:first-child, .table-email tr td:nth-child(2) {
  text-align: center;
  width: 35px;
}
.table-email tr.unread, .table-email tr.selected {
  background-color: #EEEEEE;
}
.table-email .media {
  margin: 0px;
  padding: 0px;
  position: relative;
}
.table-email .media h4 {
  margin: 0px;
  font-size: 14px;
  line-height: normal;
  left: 10px;
}
.table-email .media-object {
  width: 35px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.table-email .media-meta, .table-email .media-attach {
  font-size: 11px;
  color: #999;
  position: absolute;
  right: 10px;
}
.table-email .media-meta {
  top: 0px;
}
.table-email .media-attach {
  bottom: 0px;
}
.table-email .media-attach i {
  margin-right: 10px;
}
.table-email .media-attach i:last-child {
  margin-right: 0px;
}
.table-email .email-summary {
  margin: 0px 110px 0px 0px;
}
.table-email .email-summary strong {
  color: #333;
}
.table-email .email-summary span {
  line-height: 1;
}
.table-email .email-summary span.label {
  padding: 1px 5px 2px;
}
.table-email .ckbox {
  line-height: 0px;
  margin-left: 8px;
}
.table-email .star {
  margin-left: 6px;
}
.table-email .star.star-checked i {
  color: goldenrod;
}

.nav-email-subtitle {
  font-size: 15px;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 15px;
  margin-top: 30px;
}

.compose-mail {
  position: relative;
  padding: 15px;
}
.compose-mail textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #DDD;
}

.view-mail {
  padding: 10px;
  font-weight: 300;
}

.attachment-mail {
  padding: 10px;
  width: 100%;
  display: inline-block;
  margin: 20px 0px;
  border-top: 1px solid #EFF2F7;
}
.attachment-mail p {
  margin-bottom: 0px;
}
.attachment-mail a {
  color: #32323A;
}
.attachment-mail ul {
  padding: 0px;
}
.attachment-mail ul li {
  float: left;
  width: 200px;
  margin-right: 15px;
  margin-top: 15px;
  list-style: none;
}
.attachment-mail ul li a.atch-thumb img {
  width: 200px;
  margin-bottom: 10px;
}
.attachment-mail ul li a.name span {
  float: right;
  color: #767676;
}

@media (max-width: 640px) {
  .compose-mail-wrapper .compose-mail {
    padding: 0px;
  }
}
@media (max-width: 360px) {
  .mail-wrapper .panel-sub-heading {
    text-align: center;
  }
  .mail-wrapper .panel-sub-heading .pull-left, .mail-wrapper .panel-sub-heading .pull-right {
    float: none !important;
    display: block;
  }
  .mail-wrapper .panel-sub-heading .pull-right {
    margin-top: 10px;
  }
  .mail-wrapper .panel-sub-heading img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
  }
  .mail-wrapper .panel-footer {
    text-align: center;
  }
  .mail-wrapper .panel-footer .pull-right {
    float: none !important;
    margin-left: auto;
    margin-right: auto;
  }
  .mail-wrapper .attachment-mail ul {
    padding: 0px;
  }
  .mail-wrapper .attachment-mail ul li {
    width: 100%;
  }
  .mail-wrapper .attachment-mail ul li a.atch-thumb img {
    width: 100% !important;
  }
  .mail-wrapper .attachment-mail ul li .links {
    margin-bottom: 20px;
  }

  .compose-mail-wrapper .search-mail input {
    width: 130px;
  }
  .compose-mail-wrapper .panel-sub-heading {
    padding: 10px 7px;
  }
}
.content{
    background-color: white;
    padding-top:10px;
}
.caret{float:right;height:20px;display: table-cell;
    vertical-align: middle;}
.dropdown-menu{width:100%;}

Similar snippets

Bootstrap example and template. bs4 email view

bs4 email view

Bootstrap example and template. Clear inbox view message

Clear inbox view message

Bootstrap example and template. Your Mail Sent Successfully

Your Mail Sent Successfully

Bootstrap example and template. Clear inbox list

Clear inbox list

Bootstrap example and template. bs5 dark footer

bs5 dark footer

Bootstrap example and template. tickets for events

tickets for events

Bootstrap example and template. image with label

image with label

Bootstrap example and template. dashboard user block

dashboard user block

FAQ

How do I use this snippet?

Include Bootstrap 3.4.1, paste the HTML, add the CSS block, and include the JS (if any) to mirror the live preview.

Can I use it in commercial projects?

Yes. It’s free for personal and commercial work; check the snippets license for details.

Is it responsive?

Yes. It inherits the responsive grid and components from Bootstrap 3.4.1.

Bootstrap example and template. inbox not for email

About this bootstrap example/template

Optimized for copy‑paste: clean HTML, scoped CSS, and minimal JS so you can ship production‑ready UI faster and keep designs consistent.

Mobile‑first and responsive by default. Tested across modern browsers to reduce polish time on your project.

Already trusted in 529+ views. Reuse this snippet to speed up landing pages, dashboards, or onboarding flows.

Bootstrap 3.4.1

<link rel='stylesheet' href='https://netdna.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css'>

<script src='https://netdna.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js'></script>

This code example is based on bootstrap 3.4.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