-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.html
More file actions
43 lines (38 loc) · 928 Bytes
/
popup.html
File metadata and controls
43 lines (38 loc) · 928 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
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>PSR Previous/Next Page Navigation</title>
<style>
.container {
width: 90px;
}
.previous {
float: left;
cursor: pointer;
background: url('images/next.png') no-repeat;
width: 32px;
height: 32px;
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg);
margin-top: -5px;
}
.next {
float: right;
cursor: pointer;
background: url('images/next.png') no-repeat;
width: 32px;
height: 32px;
}
</style>
</head>
<body>
<div class="container">
<span id="previous" class="previous" title="Previous page (Alt + p)"></span>
<span id="next" class="next" title="Next page (Alt + n)"></span>
</div>
<script src="popup.js"></script>
</body>
</html>