89 lines
2.2 KiB
HTML
89 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Downloads</title>
|
|
<style>
|
|
/* Global Styles */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
background: linear-gradient(145deg, #f5f5f7, #eaeef1);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 20px;
|
|
}
|
|
|
|
/* Card Container */
|
|
.container {
|
|
max-width: 400px;
|
|
width: 100%;
|
|
padding: 20px;
|
|
background: rgba(255, 255, 255, 0.8);
|
|
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), inset 0 -1px 3px rgba(255, 255, 255, 0.5);
|
|
backdrop-filter: blur(10px);
|
|
border-radius: 16px;
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 28px;
|
|
margin-bottom: 20px;
|
|
color: #1d1d1f;
|
|
}
|
|
|
|
/* Card for Each Download Link */
|
|
.card {
|
|
background: #ffffff;
|
|
margin: 10px 0;
|
|
padding: 15px;
|
|
border-radius: 12px;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
|
}
|
|
|
|
.card:hover {
|
|
transform: scale(1.05);
|
|
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.card a {
|
|
text-decoration: none;
|
|
color: #007aff;
|
|
font-weight: 500;
|
|
font-size: 18px;
|
|
}
|
|
|
|
/* Footer for Copyright or Additional Info */
|
|
footer {
|
|
margin-top: 20px;
|
|
font-size: 14px;
|
|
color: #86868b;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Download Files</h1>
|
|
|
|
<div class="card">
|
|
<a href="itms-services://?action=download-manifest&url=https://whysoooofurious.netlify.app/files/ESign/manifest.plist" download>ESign</a>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<a href="itms-services://?action=download-manifest&url=https://whysoooofurious.netlify.app/files/Feather/manifest.plist" download>Feather</a>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<a href="https://whysoooofurious.netlify.app/files/Certificates/Sunrise-Insurance-Group.esigncert" download>Certificate</a>
|
|
</div>
|
|
</body>
|
|
</html>
|