Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
muddlebee authored Mar 24, 2017
2 parents c42c84a + d88f36a commit 547ac54
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,27 @@
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<style>
#panel, #flip {
padding: 5px;
text-align: center;
background-color:rgba(40, 96, 144, 0.73);
border: solid 1px #c3c3c3;
}

#panel {
padding: 50px;
display: none;
}
</style>
<script>
$(document).ready(function(){
$("#flip").click(function(){
$("#panel").slideDown("slow");
});
});
</script>

</head>

Expand Down Expand Up @@ -59,7 +80,11 @@
</div>
<!-- /.container -->
</nav>

<div id="flip">Click to know battle</div>
<div id="panel">
<li> Level 1</li>
<li> Level 2</li>
</div>
<!-- Page Content -->
<div class="container">

Expand Down Expand Up @@ -124,7 +149,9 @@ <h2>
<footer>
<div class="row">
<div class="col-lg-12">

<p align="center">Copyright &copy; Your Website 2014</p>

</div>
<!-- /.col-lg-12 -->
</div>
Expand Down

0 comments on commit 547ac54

Please sign in to comment.