"Dashboard to store Flat"
Bootstrap 3.1.0 Snippet by ProPheT777

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
<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 id="space"></div>
<div class="container">
<section class="row">
<article class="col-sm-3 col-md-3 col-lg-3">
<div class="profile">
<img src="http://placehold.it/150x150" alt="..." class="img-circle">
<p>Oscar Gonzalez</p>
<p>example@bootsnipp.com</p>
</div>
<ul class="list-group">
<li class="list-group-item active">Resume</li>
<li class="list-group-item">Orders</li>
<li class="list-group-item">Edit address</li>
<li class="list-group-item">Change password</li>
<li class="list-group-item">Support</li>
<li class="list-group-item">Delete account</li>
</ul>
</article>
</section>
</div>
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
.profile {
background-color: #FF766C;
border: 1px solid #ff766c;
}
.profile img {
display: block;
border: 10px solid rgba(255, 255, 255, 0.3);
margin: 0 auto;
margin-top: 10px;
margin-bottom: 10px;
}
.profile p {
text-align: center;
color: #fff;
}
.list-group-item {
background-color: #fff;
border-radius: 0px !important;
border: 1px solid #DDD;
}
.list-group-item.active, .list-group-item:hover {
border-left: 3px solid #FF766C;
background-color: #F8F7F5;
}
/*Ignore this tag. It is to give space.*/
#space {padding: 10px;}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: