mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
74 lines
3.0 KiB
HTML
74 lines
3.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>OnionShare</title>
|
|
<style type="text/css">
|
|
body {
|
|
background-color: #222222;
|
|
color: #ffffff;
|
|
text-align: center;
|
|
font-family: arial;
|
|
padding: 5em 1em;
|
|
}
|
|
.metadata {
|
|
position: absolute;
|
|
bottom: 0;
|
|
color: #999999;
|
|
text-align: left;
|
|
}
|
|
.button {
|
|
-moz-box-shadow:inset 0px 1px 0px 0px #cae3fc;
|
|
-webkit-box-shadow:inset 0px 1px 0px 0px #cae3fc;
|
|
box-shadow:inset 0px 1px 0px 0px #cae3fc;
|
|
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #79bbff), color-stop(1, #4197ee) );
|
|
background:-moz-linear-gradient( center top, #79bbff 5%, #4197ee 100% );
|
|
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#79bbff', endColorstr='#4197ee');
|
|
background-color:#79bbff;
|
|
-webkit-border-top-left-radius:12px;
|
|
-moz-border-radius-topleft:12px;
|
|
border-top-left-radius:12px;
|
|
-webkit-border-top-right-radius:12px;
|
|
-moz-border-radius-topright:12px;
|
|
border-top-right-radius:12px;
|
|
-webkit-border-bottom-right-radius:12px;
|
|
-moz-border-radius-bottomright:12px;
|
|
border-bottom-right-radius:12px;
|
|
-webkit-border-bottom-left-radius:12px;
|
|
-moz-border-radius-bottomleft:12px;
|
|
border-bottom-left-radius:12px;
|
|
text-indent:0;
|
|
border:1px solid #469df5;
|
|
display:inline-block;
|
|
color:#ffffff;
|
|
font-family:Arial;
|
|
font-size:29px;
|
|
font-weight:bold;
|
|
font-style:normal;
|
|
height:50px;
|
|
line-height:50px;
|
|
text-decoration:none;
|
|
text-align:center;
|
|
text-shadow:1px 1px 0px #287ace;
|
|
padding: 0 20px;
|
|
}
|
|
.button:hover {
|
|
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #4197ee), color-stop(1, #79bbff) );
|
|
background:-moz-linear-gradient( center top, #4197ee 5%, #79bbff 100% );
|
|
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#4197ee', endColorstr='#79bbff');
|
|
background-color:#4197ee;
|
|
}.button:active {
|
|
position:relative;
|
|
top:1px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p><a class="button" href='/{{ slug }}/download'>{{ filename }} ▼</a></p>
|
|
|
|
<div class="metadata">
|
|
<p>{{strings.filesize}}: <strong>{{ filesize }} bytes</strong></p>
|
|
<p>{{strings.sha1_checksum}}: <strong>{{ filehash }}</strong></p>
|
|
</div>
|
|
</body>
|
|
</html>
|