-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathdocs_template.html
51 lines (51 loc) · 1.13 KB
/
docs_template.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>keepass-diff</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
body {
align-items: center;
background-color: rgba(0, 0, 0, 0.1);
display: flex;
font-family: sans-serif;
justify-content: center;
margin: 0;
padding: 0;
}
a {
text-decoration: none;
}
a:focus,
a:hover {
text-decoration: underline;
}
img {
max-width: 100%;
}
pre {
background-color: rgba(0, 0, 0, 0.1);
border-left: 4px solid rgba(0, 0, 0, 1);
font-family: monospace;
padding: 20px;
}
.content {
background-color: rgba(255, 255, 255, 0.9);
box-shadow: 0 0 10vw rgba(0, 0, 0, 0.8);
height: 100%;
max-width: 1000px;
padding: 50px;
}
.logo {
margin: 50px 0;
}
</style>
</head>
<body>
<div class="content">
%%content%%
</div>
</body>
</html>