-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (66 loc) · 2.57 KB
/
index.html
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<title>Customer Segments</title>
<link rel="stylesheet" href="css/robotFont.css">
<link rel="stylesheet" href="css/materialIcons.css">
<link rel="stylesheet" href="css/material.indigo-blue.min.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/jquery-ui.css">
<link rel="stylesheet" href="css/dialog-polyfill.css">
</head>
<body>
<div class=" mdl-layout mdl-js-layout mdl-layout--fixed-header">
<header class=" mdl-layout__header mdl-color--grey-100 mdl-color-text--grey-600">
<div>
<div class="mdl-grid">
<div class="mdl-cell mdl-cell--4-col mdl-cell--1-offset-desktop mdl-cell--12-col-phone">
<span class="mdl-layout-title">Customer Segments</span>
</div>
<div class="mdl-cell mdl-cell--7-col mdl-cell--12-col-phone">
<div class="top-buttons">
<button id="add-btn" class="mdl-button mdl-js-button mdl-button--raised mdl-button--colored"> Add </button>
<!--<button id="combine-btn" class="mdl-button mdl-js-button mdl-button--raised" disabled> Combine </button>-->
</div>
</div>
</div>
</div>
</header>
<main class="mdl-layout__content mdl-color--grey-100">
<div class="mdl-grid ">
<div class="mdl-cell--12-col mdl-cell--10-col-desktop mdl-cell--1-offset-desktop mdl-cell--12-col-phone">
<div id="card-container" class="mdl-card mdl-shadow--2dp">
<div class="mdl-card__title">
<h2 class="mdl-card__title-text">Segment Selection</h2>
</div>
<div class="mdl-card__supporting-text">
Add, Combine and Remove Customer Segments...
</div>
</div>
</div>
</div>
<div class="mdl-grid saved-queries">
</div>
</main>
</div>
<dialog id="info-dialog" class="mdl-dialog">
<h4 class="mdl-dialog__title">Information</h4>
<div class="mdl-dialog__content">
<p>
</p>
</div>
<div class="mdl-dialog__actions">
<button type="button" class="mdl-button close">Ok</button>
</div>
</dialog>
<script src="js/jquery.js"></script>
<script src="js/dialog-polyfill.js"></script>
<script src="js/jquery-ui.js"></script>
<script src="js/material.min.js"></script>
<script src="js/templates.js"></script>
<script src="js/app.js"></script>
</body>
</html>