-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
57 lines (54 loc) · 1.1 KB
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- The following tag is not obeyed -->
<title>ShowTime (Custom)</title>
<!--
<script>
// Inline scripts are not allowed
alert('Hello World');
</script>
-->
<!-- Referring scripts is allowed -->
<script src="popup_script.js"></script>
<style>
body {
padding: 0px;
margin: 0px;
width: 300px;
height: 200px;
}
div {
height: 100%;
width: 100%;
display: table;
font-family: "Tahoma", "Verdana";
font-size: 15px;
font-weight: bold;
text-shadow: 0px 0px 1px #000000;
background-color: #555;
color: #fff;
}
h1,
h2 {
display: table-row;
vertical-align: middle;
text-align: center;
}
h2 {
background-color: #777;
}
.unselectable {
-webkit-user-select: none;
cursor: default;
}
</style>
</head>
<body>
<div class="unselectable">
<h1 class="empty"></h1>
<h1 id="time"></h1>
<h2 id="date"></h2>
</div>
</body>
</html>