-
Notifications
You must be signed in to change notification settings - Fork 2
/
options.html
52 lines (51 loc) · 1.1 KB
/
options.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
<!-- popup.html -->
<!DOCTYPE html>
<html>
<head>
<title>Notify Me!</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<style>
.info {
font-size: 22px;
color: green;
text-align: right;
width: 240px;
}
.wrapper {
font-size: 13px;
width: 290px;
text-align: right;
}
p {
font-size: 9px;
clear: both;
width: 220px;
margin: 5px auto;
text-align: right;
}
.watermark {
bottom: 7px;
right: 222px;
opacity: 1;
position: fixed;
content: "COPYRIGHT";
pointer-events: none;
text-align: left;
}
.not {
font-size: 9px;
width: 275px;
text-align: right;
}
</style>
<body>
<div>
<p class="info">Hello, fighter!</p>
<img class="watermark" height="65" width="70" src="LOGO1.png">
<p class="wrapper">Notifications are ready, are you?</p>
<p class="not">By: <a id="author" href="#">Al-Azhar ICPC Community</a> · <a id="github" href="#">Source code</a></p>
</div>
<script src="options.js"></script>
</body>
</html>