-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathabout.html
176 lines (161 loc) · 5.37 KB
/
about.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!doctype html>
<html lang="en">
<head>
<link rel="canonical" href="https://calculator.lakeedwards.com/about" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-D8JJ50SR59"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-D8JJ50SR59');
</script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@226;240;300;400&display=swap" rel="stylesheet">
<meta content="width=device-width, initial-scale=1, minimum-scale=1, user-scalable=no" name="viewport">
<meta property="og:image" content="/iPad-Calculator/images/calculator-image.jpeg" />
<title>iPad Calculator</title>
<style>
body {
background: black;
overflow-x: hidden;
}
* {
color: white;
font-family: -apple-system, 'Inter', 'Avenir Next', 'Avenir', 'Helvetica Neue', 'Helvetica', sans-serif;
}
.icon {
width: 80%;
border-radius: 20%;
}
.heading {
display: grid;
grid-template-columns: 100px auto 250px;
place-items: center start;
padding: 10px;
max-width: 800px;
margin: auto;
}
@media (max-width: 630px) {
.heading {
display: grid;
grid-template-columns: 100px auto;
}
.storedotapp {
margin-top: 20px;
}
}
h1, h3 {
margin: 0;
line-height: 1;
}
h3 {
font-weight: normal;
}
.screenshot {
width: 98%;
max-width: 800px;
margin: auto;
display: block;
padding: 30px 10px;
box-sizing: border-box;
}
.section{
padding-left: 0;
max-width: 800px;
margin: auto;
position: relative;
padding: 20px;
}
.gray {
background: rgb(28, 28, 28);
box-shadow: -80px 0 0 0 rgb(28, 28, 28), 80px 0 0 0 rgb(28, 28, 28), -800px 0 0 0 rgb(28, 28, 28), 800px 0 0 0 rgb(28, 28, 28), -1600px 0 0 0 rgb(28, 28, 28), 1600px 0 0 0 rgb(28, 28, 28);
}
p {
font-weight: 200;
line-height: 1.6;
letter-spacing: 0.02em;
font-size: 1.2rem;
}
.buttons {
text-align: center;
}
.buttons a {
display: inline-block;
width: 200px;
background-color: white;
padding: 20px 10px;
margin: 10px;
border-radius: 10000px;
text-align: center;
color: black;
font-weight: 700;
transition: all 0.3s ease-in-out;
text-decoration: none;
font-family: ui-rounded, sans-serif;
font-size: 1.3rem;
border: 3px solid darkorange;
}
.buttons a:hover {
transform: scale(1.02);
box-shadow: 2px 5px 30px -7px gray;
filter: brightness(120%);
}
</style>
</head>
<body>
<div class = "heading">
<img class = "icon" src = "https://lake-e.github.io/iPad-Calculator/images/icon.png">
<div class = "titles">
<h1>
iPad Calculator
</h1>
<h3>
Created by Lake Edwards
</h3>
</div>
<div class="storedotapp">
<iframe
src="https://static.store.app/widget/badge/index.html?sitePath=calculator-lakeedwards-com&theme=dark"
style="width: 250px; height: 122px; border: none;">
</iframe>
</div>
</div>
<img class = "screenshot" src = "https://raw.githubusercontent.com/Lake-e/iPad-Calculator/main/images/calculator-screenshot-1.jpeg">
</div>
<div class = "section gray">
<h2>
Apple-like calculator for iPad
</h2>
<p>
I created this calculator because of the lack of a calculator on the iPad.
Sure, there are plenty of calculators out there for iPad.
But, I created this calculator to perfectly match the asthetic of the native iPhone calculator.
Because of that, it feels almost native itself.
</p>
<p>
Please keep in mind that it only supports basic calculator functions currently.
</p>
</div>
<div class = "section">
<h2>
It's completly free
</h2>
<p>
I built this calculator using web app technologies. You can easily install it by tapping the link below and following the instructions to add it to your iPad Homescreen.
</p>
<p>
If you would like to say thanks, there is an option to donate via <a href = "https://buymeacoffee.com/lakeedwards" target="_blank">buymeacoffee.com</a>.
If you'd like to contact me about this project, you can email me at <a href = "mailto:[email protected]" target="_blank">[email protected]</a>.
</p>
</div>
<div class = "buttons">
<a href = "https://calculator.lakeedwards.com/index.html" target="_blank">
Get the Calculator
</a>
<a href = "https://buymeacoffee.com/lakeedwards" target="_blank">
Say Thanks
</a>
</div>
<br><br><br>
</body>
</html>