forked from muicss/mui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappbar.html
More file actions
45 lines (44 loc) · 1.21 KB
/
appbar.html
File metadata and controls
45 lines (44 loc) · 1.21 KB
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
<!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>
<script src="../assets/css-switch.js"></script>
<style>
.flexbox {
display: flex;
align-items: center;
min-height: inherit;
}
.item {
width: 33.33%;
}
</style>
</head>
<body>
<h1>Container Element</h1>
<div class="mui-appbar">
</div>
<h1>Helpers</h1>
<h2>.mui--appbar-height</h2>
<div class="mui-appbar">
<table width="100%">
<tr class="mui--align-middle">
<td class="mui--appbar-height">Left Side</td>
<td class="mui--appbar-height" align="right">Right Side</td>
</tr>
</table>
</div>
<h2>.mui--appbar-min-height</h2>
<div class="mui--appbar-min-height mui--divider-top mui--divider-bottom">
Content
</div>
<h2>.mui--appbar-line-height</h2>
<div class="mui-appbar mui--appbar-line-height">
Content
</div>
</body>
</html>