forked from muicss/mui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutilities.html
More file actions
33 lines (33 loc) · 936 Bytes
/
utilities.html
File metadata and controls
33 lines (33 loc) · 936 Bytes
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="../assets/mui/css/mui.css"/>
<script src="../assets/mui/js/mui.js"></script>
<style>
.example-div {
width: 100px;
height: 100px;
}
</style>
</head>
<body>
<div class="mui-container">
<h2>Depth helpers</h2>
<div class="mui-panel">
<h3>.mui-z1</h3>
<div class="example-div mui--z1"></div>
<h3>.mui-z2</h3>
<div class="example-div mui--z2"></div>
<h3>.mui-z3</h3>
<div class="example-div mui--z3"></div>
<h3>.mui-z4</h3>
<div class="example-div mui--z4"></div>
<h3>.mui-z5</h3>
<div class="example-div mui--z5"></div>
</div>
</div>
</body>
</html>