"User profile"
Bootstrap 3.2.0 Snippet by albertobissacco

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="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.2.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 ---------->
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.no-icons.min.css" rel="stylesheet">
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
<div class="container profile">
<div class="row">
<div class="span12">
<div class="well well-small clearfix">
<div class="row-fluid">
<div class="span2">
<img src="http://www.gravatar.com/avatar/f6112e781842d6a2b4636b35451401ff?s=125" class="img-polaroid"/>
</div>
<div class="span4">
<h2>Jonnie Spratley</h2>
<ul class="unstyled">
<li><i class="icon-phone"></i> 916-241-3613</li>
<li><i class="icon-envelope"></i> jonniespratley@me.com</li>
<li><i class="icon-globe"></i> http://jonniespratley.me</li>
</ul>
</div>
<div class="span6">
<ul class="inline stats">
<li>
<span>275</span>
Friends
</li>
<li>
<span>354</span>
Followers
</li>
<li>
<span>186</span>
Photos
</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
body{
padding-top:25px !important;
}
.stats {
text-align:center;
text-shadow:1px 1px 0px #fff;
margin-top:25px;
}
.stats li{
width:125px;
}
.stats span{
font-family:Helvetica;
font-weight:bold;
text-shadow:1px 1px 0px #fff;
font-size:4em;
display:block;
line-height:1em;
}
/* Large desktop */
@media (min-width: 1200px) {
}
/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) {
}
/* Landscape phone to portrait tablet */
@media (max-width: 767px) {
.profile img{
width:75px;
}
.profile h2{
font-size:1.7em;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments:

This is not Bootstrap 3.x compatible.

Mujeeb Mebron () - 8 years ago - Reply 0