-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.html
88 lines (87 loc) · 1.82 KB
/
app.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="Description" content="Never be fotless again. Explore a wide selection of Fots, recipes, and more." />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu&display=swap" rel="stylesheet">
<title>Fots app download</title>
<link rel='icon' href='https://drive.google.com/thumbnail?id=1_uXBFbx-2fDh-ToXiNJtapD21qamOd71' type='image/svg'/ >
<style>
* {
font-family: 'Ubuntu', sans-serif;
}
#title {
position: absolute;
top: -10px;
left: 10px;
color: white;
user-select: none;
font-size: 30px;
}
#top {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 70px;
background: #dc1b1b;
}
.download {
background: #dc1b1b;
height: 50px;
width: 150px;
border-radius: 7px;
color: white;
border: 1px solid #dc1b1b;
cursor: pointer;
font-size: 20px;
}
.download:hover {
opacity: 0.8;
}
#left {
position: absolute;
top: 50%;
right: 51%;
}
#right {
position: absolute;
top: 50%;
left: 51%;
background: transparent;
color: #dc1b1b;
}
#amount {
position: absolute;
bottom: 30%;
text-align: center;
left: 0px;
width: 100%;
user-select: none;
cursor: default;
font-size: 15px;
}
#img {
position: absolute;
top: 0px;
left: 0px;
min-width: 100%;
min-height: 100%;
z-index: -1;
opacity: 0.4;
}
</style>
</head>
<body>
<div id="top">
<p id="title">Download the Fots macOS app</p>
</div>
<a href="https://lb123658.github.io/Fots/fotsapp.scpt" download>
<button class="download" id="left" title="This app was created with AppleScript so it only works on a Mac"> Download</button></a>
<a href="https://lb123658.github.io/Fots/">
<button class="download" id="right">Web version</button></a>
<p id="amount">FotsApp for macOS • 1.0KB download</p>
<img src="img.jpg" id="img"/>
</body>
</html>