Skip to content

Commit

Permalink
create jquery.metisMenu.css
Browse files Browse the repository at this point in the history
  • Loading branch information
onokumus committed Mar 10, 2014
1 parent e47120e commit e4688b7
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 75 deletions.
82 changes: 7 additions & 75 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,77 +2,13 @@
<html>
<head>
<meta charset="utf-8">
<title>Menu</title>
<meta name="viewport" content="">

<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">


<style>
.arrow {
float: right;
}

.glyphicon.arrow:before {
content: "\e079";
}

.active > a > .glyphicon.arrow:before {
content: "\e114";
}

.fa.arrow:before {
content: "\f104";
}

.active > a > .fa.arrow:before {
content: "\f107";
}

.plus-times {
float: right;
}

.fa.plus-times:before {
content: "\f067";
}

.active > a > .fa.plus-times {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}

.plus-minus {
float: right;
}

.fa.plus-minus:before {
content: "\f067";
}

.active > a > .fa.plus-minus:before {
content: "\f068";
}
</style>


<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');

ga('create', 'UA-1669764-18', 'onokumus.github.io');
ga('send', 'pageview');

</script>

<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>metisMenu</title>

<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<link rel="stylesheet" href="jquery.metisMenu.css">
</head>
<body>
<div class="container">
Expand Down Expand Up @@ -182,12 +118,8 @@ <h3>No Collapse</h3>
</div>

<script src="https://code.jquery.com/jquery.js"></script>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.2/js/bootstrap.min.js"></script>

<script>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>


</script>
<script src="jquery.metisMenu.js"></script>

<script>
Expand Down
48 changes: 48 additions & 0 deletions jquery.metisMenu.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
.arrow {
float: right;
}

.glyphicon.arrow:before {
content: "\e079";
}

.active > a > .glyphicon.arrow:before {
content: "\e114";
}

.fa.arrow:before {
content: "\f104";
}

.active > a > .fa.arrow:before {
content: "\f107";
}

.plus-times {
float: right;
}

.fa.plus-times:before {
content: "\f067";
}

.active > a > .fa.plus-times {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}

.plus-minus {
float: right;
}

.fa.plus-minus:before {
content: "\f067";
}

.active > a > .fa.plus-minus:before {
content: "\f068";
}

0 comments on commit e4688b7

Please sign in to comment.