"prfile"
Bootstrap 3.3.0 Snippet by Z10yTap0k

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 ---------->
<link href="//netdna.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.css" rel="stylesheet">
<div class="container">
<div class="row">
<div class="col-md-3">
<div class="panel panel-primary">
<div class="panel-heading">
<h4 class="panel-title">
<a href="#">Разделы личного кабинета
</a>
</h4>
</div>
<div class="panel-collapse">
<ul class="list-group list-unstyled">
<li class="list-group-item"><a href="#">Личные даннные</a></li>
<li class="list-group-item"><a href="#">Заказы</a></li>
<li class="list-group-item"><a href="#">Закладки</a></li>
<li class="list-group-item"><a href="#">Вы смотрели</a></li>
<li class="list-group-item"><a href="#">Смена пароля</a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-9">
<div class="panel panel-primary">
<div class="panel-heading">Личный кабинет</div>
<div class="panel-body panel-profile">
<div class="row">
<div class="col-md-6">
<div class="profile-item profile-item-user">
<a href="#">
<span>Личные данные</span>
</a>
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
.panel-profile > .row
{
padding-bottom: 30px;
}
.profile-item {
position: relative;
padding: 0 0 0 70px;
text-transform: none;
display:block;
}
.profile-item > a {
display: block;
overflow: hidden;
text-decoration: none;
font-size: 14pt;
}
.profile-item > a:first-child:before {
font-family: "FontAwesome";
display: inline-block;
font-size: 55px;
line-height: 18px;
padding: 20px 0 0 0px;
width: 70px;
height: 70px;
position: absolute;
left: 0;
}
.profile-item-user > a:first-child:before {
content: "\f07a";
}
.profile-item-orders > a:first-child:before {
content: "\f022";
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: