"menu2"
Bootstrap 3.3.0 Snippet by Burny0205

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
<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 ---------->
<div class="left row-fluid">
<div class="col-xs-offset-3 menu col-md-0 col-sm-offset-0 col-md-offset-0">
<div class="item " id="Cab" onclick="location.href='/Cabinet/';">
<span class="glyphicon glyphicon-th-large"></span>
<span class="hidden-xs">Кабинет</span>
</div>
<div class="item" id="Add" onclick="location.href = '/Cabinet/AddAdvert/';">
<span class="glyphicon glyphicon-plus"></span>
<span class="hidden-xs">Разместить</span>
</div>
<div class="item" id="ListAds" onclick="location.href = '/Cabinet/Adverts/';">
<span class="glyphicon glyphicon-th-list"></span>
<span class="hidden-xs">Список объявлений</span>
</div>
<div class="item" id="ListDevs" onclick="location.href = '/Cabinet/Devices/';">
<span class="glyphicon glyphicon-list-alt"></span>
<span class="hidden-xs">Список устройств</span>
</div>
<div class="item" onclick="location.href = '/Cabinet/Stats/';">
<span class="glyphicon glyphicon-dashboard"></span>
<span class="hidden-xs">Статистика</span>
</div>
</div>
</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
31
32
33
34
35
36
37
@media (max-width: 768px) {
.item {
display:inline-block;
}
.left {
height: 50px !important;
width: 100% !important;
}
.menu{
margin-left:25% auto;
text-align:center;
width: 50%;
}
}
.cabinet{
position: absolute;
left: 0;
height: 100%;
z-index: 500;
}
.left {
position: relative;
background: #337ab7;
display: inline-block;
white-space: nowrap;
width: 50px;
transition: width 1s ;
}
td, th {
vertical-align: middle !important;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: