-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpopup.html
More file actions
33 lines (28 loc) · 692 Bytes
/
popup.html
File metadata and controls
33 lines (28 loc) · 692 Bytes
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
<!doctype html>
<html>
<head>
<title>AtCoder Unit Test</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="popup.js"></script>
<style>
html {
min-width: 12em;
}
body {
font-size: 100%;
text-align: center;
margin: 1em;
}
.title {
font-size: small;
color: #888;
}
</style>
</head>
<body>
<span class="title">AtCoder Unit Test</span>
<p id="message" data-i18n="processing">Processing...</p>
<a id="option" data-i18n="open_options" href="#">Open options</a>
</body>
</html>