-
Notifications
You must be signed in to change notification settings - Fork 1
/
Shopkeeper_Sidebar.html
49 lines (42 loc) · 2.11 KB
/
Shopkeeper_Sidebar.html
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
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" href="../MahabazarViewPages/css/Shopkeeper_Sidebar.css">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</head>
<body>
<nav class="navbar navbar-inverse sidebar" role="navigation" style="background-color: #0071BC;">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<a class="navbar-brand" href="#">Brand</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<ul class="nav navbar-nav" style="color: white;">
<li><a href="#">Product<span style="font-size:16px; color: white;" id ="product" class="pull-right hidden-xs showopacity glyphicon glyphicon-shopping-cart"></span></a></li>
<li class="active"><a href="#">Profile<span style="font-size:16px;" class="pull-right hidden-xs showopacity glyphicon glyphicon-user"></span></a></li>
<li ><a href="#">Transaction<span style="font-size:16px;" class="pull-right hidden-xs showopacity glyphicon glyphicon-transfer"></span></a></li>
<li><a href="#">Offers<span style="font-size:16px;" class="pull-right hidden-xs showopacity glyphicon glyphicon-gift"></span></a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Settings <span class="caret"></span><span style="font-size:16px;" class="pull-right hidden-xs showopacity glyphicon glyphicon-cog"></span></a>
<ul class="dropdown-menu forAnimate" role="menu">
<li><a href="#">Change Password</a></li>
<li><a href="#">New Password</a></li>
<li><a href="#">Change Address</a></li>
<!-- <li class="divider"></li> -->
<li><a href="#">Change Profile</a></li>
<li class="divider"></li>
<li><a href="#">One more separated link</a></li>
</ul>
</li>
</ul>
</div>
</nav>
<div class="main">
<!-- Content Here -->
</div>
</body>
</html>