-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotification.html
28 lines (26 loc) · 1.01 KB
/
notification.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="node_modules/material-design-lite/material.min.css">
<link rel="stylesheet" href="node_modules/material-design-icons/iconfont/material-icons.css">
<link rel="stylesheet/less" type="text/css" href="css/style.less">
<script src="node_modules/less/dist/less.min.js"></script>
<script src="node_modules/material-design-lite/material.min.js"></script>
<script src="node_modules/jquery/dist/jquery.min.js"></script>
</head>
<body>
<div class="message-wrapper">
<button class="mdl-button mdl-js-button mdl-button--icon notification-close-icon" id="closeButton">
<i class="material-icons">close</i>
</button>
<div class="message-body">
<div class="icon-place">
<i id="notify-icon" class="material-icons">phone_in_talk</i>
</div>
<div class="text-place"></div>
</div>
</div>
</body>
</html>