forked from stefanzweifel/dropshare-landingpage
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
98 lines (80 loc) · 2.45 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>__FILENAME__ | s.wnx.ch</title>
<meta name="description" content="">
<link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<style>
* {
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
box-sizing: border-box;
}
a {
text-decoration: none;
color: #BEBEBE;
}
p {
color: #BEBEBE;
}
img {
max-width: 100%;
}
.truncate {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.header--page {
height: 50px;
padding: 15px;
border-bottom: 1px solid #ccc;
clear: both;
background: rgb(255,255,255);
background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(249,249,249,1) 100%);
}
.file-content {
text-align: center;
margin: 0 auto;
padding: 20px;
}
.column--6 {
width: 50%;
float: left;
}
.left { text-align: left; }
.center { text-align: center; }
.right { text-align: right; }
.img-thumbnail {
border: 1px solid #eaeaea;
margin: 20px auto;
}
.preview--text {
color: #BEBEBE;
font-size: 12px;
margin-top: 20px;
}
</style>
</head>
<body>
<header class="header--page">
<div class="left column--6">
<p class="truncate">__FILENAME__</p>
</div>
<div class="right column--6">
<a class="btn btn-primary btn-lg" href="__PATH__" download="__FILENAME__">Download</a>
</div>
</header>
<main class="file-content" role="main">
<div class="preview">
__PREVIEW__
</div>
<div class="preview--text">
__FILESIZE__
</div>
</main>
</body>
</html>