mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-15 06:08:57 +03:00
124 lines
2.9 KiB
HTML
124 lines
2.9 KiB
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
<title>Material Design for Bootstrap temporary development test case</title>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<!-- Mobile support -->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<!-- Material Design fonts -->
|
|
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Roboto:300,400,500,700" type="text/css">
|
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
|
|
|
<!-- Bootstrap -->
|
|
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
<!-- Bootstrap Material Design -->
|
|
<link href="dist/css/bootstrap-material-design.css" rel="stylesheet">
|
|
<link href="dist/css/ripples.min.css" rel="stylesheet">
|
|
|
|
<!-- Dropdown.js -->
|
|
<link href="//cdn.rawgit.com/FezVrasta/dropdown.js/master/jquery.dropdown.css" rel="stylesheet">
|
|
|
|
<!-- Page style -->
|
|
<link href="index.css" rel="stylesheet">
|
|
|
|
<!-- jQuery -->
|
|
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<!--
|
|
|
|
Test case
|
|
|
|
-->
|
|
|
|
<div class="container">
|
|
|
|
<form class="form-horizontal">
|
|
<fieldset>
|
|
<legend>Horizontal Form</legend>
|
|
|
|
<div class="form-group">
|
|
<div class="col-md-offset-2 col-md-10">
|
|
<div class="togglebutton">
|
|
<label>
|
|
<input type="checkbox" checked> Checked
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="col-md-offset-2 col-md-10">
|
|
<div class="togglebutton">
|
|
<label>
|
|
<input type="checkbox"> Unchecked
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</fieldset>
|
|
</form>
|
|
|
|
<form class="form">
|
|
<fieldset>
|
|
<legend>Standard Form</legend>
|
|
|
|
<div class="form-group">
|
|
<div class="col-md-offset-2 col-md-10">
|
|
<div class="togglebutton">
|
|
<label>
|
|
<input type="checkbox" checked> Checked
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="col-md-offset-2 col-md-10">
|
|
<div class="togglebutton">
|
|
<label>
|
|
<input type="checkbox"> Unchecked
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</fieldset>
|
|
</form>
|
|
</div>
|
|
|
|
|
|
<!--
|
|
|
|
|
|
Scripts
|
|
|
|
|
|
-->
|
|
<!-- Twitter Bootstrap -->
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/js/bootstrap.min.js"></script>
|
|
|
|
<!-- Material Design for Bootstrap -->
|
|
<script src="dist/js/material.js"></script>
|
|
<script src="dist/js/ripples.min.js"></script>
|
|
<script>
|
|
$.material.init();
|
|
</script>
|
|
|
|
<!-- Sliders -->
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/noUiSlider/6.2.0/jquery.nouislider.min.js"></script>
|
|
|
|
<!-- Dropdown.js -->
|
|
<script src="https://cdn.rawgit.com/FezVrasta/dropdown.js/master/jquery.dropdown.js"></script>
|
|
<script>
|
|
$("#dropdown-menu select").dropdown();
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|