"Gradient sidebar navbar w/ data grid table"
Bootstrap 3.3.0 Snippet by sshelzi

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.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 ---------->
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-2 col-sm-4 sidebar1">
<div class="logo">
<img src="http://lorempixel.com/output/people-q-g-64-64-1.jpg" class="img-responsive center-block" alt="Logo">
</div>
<br>
<div class="left-navigation">
<ul class="list">
<h5><strong>CATEGORIES</strong></h5>
<li>Full Schedule</li>
<li>Programming</li>
<li>Engineering</li>
<li>Database</li>
<li>Office</li>
<li>Web & Design</li>
<li>Business Skills</li>
</ul>
<br>
<ul class="list">
<h5><strong>VENDORS</strong></h5>
<li>Adobe</li>
<li>Cisco</li>
<li>CompTIA</li>
<li>Tennis</li>
<li>Crystal Reports</li>
<li>EC-Council</li>
<li>Google</li>
<li>ITIL</li>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
.sidebar1 {
background: #253241;
/* For browsers that do not support gradients */
background: -webkit-linear-gradient(#253241, rgba(0,82,110,1), #2e8b57);
/* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(#253241, rgba(0,82,110,1), #2e8b57);
/* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(#253241, rgba(0,82,110,1), #2e8b57);
/* For Firefox 3.6 to 15 */
background: linear-gradient(#253241, rgba(0,82,110,1), #2e8b57);
/* Standard syntax */
padding: 0px;
min-height: 100%;
}
.logo {
max-height: 130px;
}
.logo>img {
margin-top: 30px;
padding: 3px;
border: 3px solid white;
border-radius: 100%;
}
.list {
color: #fff;
list-style: none;
padding-left: 0px;
}
.list::first-line {
color: rgba(255, 255, 255, 0.5);
}
.list> li, h5 {
padding: 5px 0px 5px 40px;
}
.list>li:hover {
background-color: rgba(255, 255, 255, 0.2);
border-left: 5px solid white;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: