-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
36 lines (36 loc) · 1.03 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/favicon.png" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PDF Page Stripper</title>
</head>
<body>
<div id="app"></div>
<a
href="https://github.com/fsinf/pdf-page-stripper"
style="
position: fixed;
padding: 5px 45px;
width: 128px;
top: 50px;
right: -60px;
transform: rotate(45deg);
box-shadow: 0 0 0 3px #2600ff, 0 0 20px -3px rgba(0, 0, 0, 0.5);
text-shadow: 0 0 0 #ffffff, 0 0 5px rgba(0, 0, 0, 0.3);
background-color: #2600ff;
color: #ffffff;
font-size: 12px;
font-family: sans-serif;
text-decoration: none;
font-weight: bold;
border: 2px dotted #ffffff;
letter-spacing: 0.5px;
"
>Star me on GitHub</a
>
<script type="module" src="/src/main.js"></script>
</body>
</html>