-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (56 loc) · 1.3 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sharing via send-it</title>
</head>
<body>
<div class="container">
<h1>Sharing secrets via <a href="https://github.com/PythonicNinja/send-it">send-it</a></h1>
<pre><% message %></pre>
</div>
<footer>
made with love by <a href="https://github.com/PythonicNinja">PythonicNinja</a>
</footer>
</body>
<style>
body {
font-family: Arial, sans-serif;
margin-top: 100px;
margin: 0;
padding: 0;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 1rem;
}
pre {
margin: 0 auto;
padding: 20px;
border: 1px solid #ccc;
background-color: #f8f8f8;
border-radius: 5px;
white-space: pre-wrap;
word-wrap: break-word;
}
footer {
position: absolute;
bottom: 0;
padding-top: 1rem;
padding-bottom: 1rem;
text-align: center;
background-color: #f8f8f8;
border-top: 1px solid #ccc;
width: 100%;
}
footer a {
color: #007bff;
text-decoration: none;
}
footer a:hover {
color: #0056b3;
}
</style>
</html>