-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotification.html
46 lines (43 loc) · 1.1 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<style>
body
{
background-color: #f8f6f2;
font-family: Arial, sans;
font-size: 12px;
/* Notifications are not resized dynamically so we need to make it as big as possible */
height: 144px;
}
#notification
{
position: absolute;
top: 5px;
left: 65px;
}
#notification>h1
{
font-size: 16px;
}
#notification>*
{
margin: 5px;
}
</style>
<script src="i18n.js"></script>
<script src="notification.js"></script>
</head>
<body>
<img src="icons/abp-48.png">
<div id="notification">
<h1 id="notification-title"></h1>
<p id="notification-message"></p>
<div id="notification-question">
<button id="notification-yes" class="i18n_overlay_notification_button_yes"></button>
<button id="notification-no" class="i18n_overlay_notification_button_no"></button>
<a id="notification-close" href="#" class="i18n_overlay_notification_button_close"></a>
</div>
</div>
</body>
</html>